Last active
January 18, 2018 05:07
-
-
Save irori/25d6cac337e0c47d749886f0c72635e9 to your computer and use it in GitHub Desktop.
pprof results of module loading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" | |
| "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <!-- Generated by graphviz version 2.38.0 (20140413.2041) | |
| --> | |
| <!-- Title: chrome Pages: 1 --> | |
| <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <script type="text/ecmascript"><![CDATA[/** | |
| * SVGPan library 1.2.2 | |
| * ====================== | |
| * | |
| * Given an unique existing element with id "viewport" (or when missing, the | |
| * first g-element), including the the library into any SVG adds the following | |
| * capabilities: | |
| * | |
| * - Mouse panning | |
| * - Mouse zooming (using the wheel) | |
| * - Object dragging | |
| * | |
| * You can configure the behaviour of the pan/zoom/drag with the variables | |
| * listed in the CONFIGURATION section of this file. | |
| * | |
| * Known issues: | |
| * | |
| * - Zooming (while panning) on Safari has still some issues | |
| * | |
| * Releases: | |
| * | |
| * 1.2.2, Tue Aug 30 17:21:56 CEST 2011, Andrea Leofreddi | |
| * - Fixed viewBox on root tag (#7) | |
| * - Improved zoom speed (#2) | |
| * | |
| * 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi | |
| * - Fixed a regression with mouse wheel (now working on Firefox 5) | |
| * - Working with viewBox attribute (#4) | |
| * - Added "use strict;" and fixed resulting warnings (#5) | |
| * - Added configuration variables, dragging is disabled by default (#3) | |
| * | |
| * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui | |
| * Fixed a bug with browser mouse handler interaction | |
| * | |
| * 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui | |
| * Updated the zoom code to support the mouse wheel on Safari/Chrome | |
| * | |
| * 1.0, Andrea Leofreddi | |
| * First release | |
| */ | |
| /** | |
| * @license | |
| * This code is licensed under the following BSD license: | |
| * | |
| * Copyright 2009-2010 Andrea Leofreddi <a.leofreddi@itcharm.com>. All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without modification, are | |
| * permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright notice, this list of | |
| * conditions and the following disclaimer. | |
| * | |
| * 2. Redistributions in binary form must reproduce the above copyright notice, this list | |
| * of conditions and the following disclaimer in the documentation and/or other materials | |
| * provided with the distribution. | |
| * | |
| * THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR | |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
| * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
| * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| * | |
| * The views and conclusions contained in the software and documentation are those of the | |
| * authors and should not be interpreted as representing official policies, either expressed | |
| * or implied, of Andrea Leofreddi. | |
| */ | |
| "use strict"; | |
| /// CONFIGURATION | |
| /// ====> | |
| var enablePan = 1; // 1 or 0: enable or disable panning (default enabled) | |
| var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled) | |
| var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled) | |
| var zoomScale = 0.4; // Zoom sensitivity | |
| /// <==== | |
| /// END OF CONFIGURATION | |
| var root = document.documentElement; | |
| var state = 'none', svgRoot = null, stateTarget, stateOrigin, stateTf; | |
| setupHandlers(root); | |
| /** | |
| * Register handlers | |
| */ | |
| function setupHandlers(root){ | |
| setAttributes(root, { | |
| "onmouseup" : "handleMouseUp(evt)", | |
| "onmousedown" : "handleMouseDown(evt)", | |
| "onmousemove" : "handleMouseMove(evt)", | |
| //"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element | |
| }); | |
| if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) | |
| window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari | |
| else | |
| window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others | |
| } | |
| /** | |
| * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable. | |
| */ | |
| function getRoot(root) { | |
| if(svgRoot == null) { | |
| var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r; | |
| while(t != root) { | |
| if(t.getAttribute("viewBox")) { | |
| setCTM(r, r.getCTM()); | |
| t.removeAttribute("viewBox"); | |
| } | |
| t = t.parentNode; | |
| } | |
| svgRoot = r; | |
| } | |
| return svgRoot; | |
| } | |
| /** | |
| * Instance an SVGPoint object with given event coordinates. | |
| */ | |
| function getEventPoint(evt) { | |
| var p = root.createSVGPoint(); | |
| p.x = evt.clientX; | |
| p.y = evt.clientY; | |
| return p; | |
| } | |
| /** | |
| * Sets the current transform matrix of an element. | |
| */ | |
| function setCTM(element, matrix) { | |
| var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; | |
| element.setAttribute("transform", s); | |
| } | |
| /** | |
| * Dumps a matrix to a string (useful for debug). | |
| */ | |
| function dumpMatrix(matrix) { | |
| var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]"; | |
| return s; | |
| } | |
| /** | |
| * Sets attributes of an element. | |
| */ | |
| function setAttributes(element, attributes){ | |
| for (var i in attributes) | |
| element.setAttributeNS(null, i, attributes[i]); | |
| } | |
| /** | |
| * Handle mouse wheel event. | |
| */ | |
| function handleMouseWheel(evt) { | |
| if(!enableZoom) | |
| return; | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var delta; | |
| if(evt.wheelDelta) | |
| delta = evt.wheelDelta / 360; // Chrome/Safari | |
| else | |
| delta = evt.detail / -9; // Mozilla | |
| var z = Math.pow(1 + zoomScale, delta); | |
| var g = getRoot(svgDoc); | |
| var p = getEventPoint(evt); | |
| p = p.matrixTransform(g.getCTM().inverse()); | |
| // Compute new scale matrix in current mouse position | |
| var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y); | |
| setCTM(g, g.getCTM().multiply(k)); | |
| if(typeof(stateTf) == "undefined") | |
| stateTf = g.getCTM().inverse(); | |
| stateTf = stateTf.multiply(k.inverse()); | |
| } | |
| /** | |
| * Handle mouse move event. | |
| */ | |
| function handleMouseMove(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if(state == 'pan' && enablePan) { | |
| // Pan mode | |
| var p = getEventPoint(evt).matrixTransform(stateTf); | |
| setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); | |
| } else if(state == 'drag' && enableDrag) { | |
| // Drag mode | |
| var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse()); | |
| setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM())); | |
| stateOrigin = p; | |
| } | |
| } | |
| /** | |
| * Handle click event. | |
| */ | |
| function handleMouseDown(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if( | |
| evt.target.tagName == "svg" | |
| || !enableDrag // Pan anyway when drag is disabled and the user clicked on an element | |
| ) { | |
| // Pan mode | |
| state = 'pan'; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } else { | |
| // Drag mode | |
| state = 'drag'; | |
| stateTarget = evt.target; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } | |
| } | |
| /** | |
| * Handle mouse button release event. | |
| */ | |
| function handleMouseUp(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| if(state == 'pan' || state == 'drag') { | |
| // Quit pan mode | |
| state = ''; | |
| } | |
| } | |
| ]]></script><g id="viewport" transform="scale(0.5,0.5) translate(0,0)"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3989)"> | |
| <title>chrome</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-3989 1877.5,-3989 1877.5,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="772,-3827 772,-3977 1184,-3977 1184,-3827 772,-3827"/> | |
| </g> | |
| <!-- File: chrome --> | |
| <g id="node1" class="node"><title>File: chrome</title> | |
| <g id="a_node1"><a xlink:title="chrome"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1176,-3969 780,-3969 780,-3835 1176,-3835 1176,-3969"/> | |
| <text text-anchor="start" x="788" y="-3952.2" font-family="Times,serif" font-size="16.00">File: chrome</text> | |
| <text text-anchor="start" x="788" y="-3934.2" font-family="Times,serif" font-size="16.00">Type: cpu</text> | |
| <text text-anchor="start" x="788" y="-3916.2" font-family="Times,serif" font-size="16.00">Active filters:</text> | |
| <text text-anchor="start" x="788" y="-3898.2" font-family="Times,serif" font-size="16.00">   hide=v8::internal</text> | |
| <text text-anchor="start" x="788" y="-3880.2" font-family="Times,serif" font-size="16.00">Showing nodes accounting for 5.49s, 62.67% of 8.76s total</text> | |
| <text text-anchor="start" x="788" y="-3862.2" font-family="Times,serif" font-size="16.00">Dropped 643 nodes (cum <= 0.04s)</text> | |
| <text text-anchor="start" x="788" y="-3844.2" font-family="Times,serif" font-size="16.00">Showing top 80 nodes out of 263</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node1" class="node"><title>N1</title> | |
| <g id="a_node1"><a xlink:title="base::debug::TaskAnnotator::RunTask (6.26s)"> | |
| <polygon fill="#edd7d5" stroke="#b21100" points="1191,-3271 1065,-3271 1065,-3161 1191,-3161 1191,-3271"/> | |
| <text text-anchor="middle" x="1128" y="-3255" font-family="Times,serif" font-size="15.00">base</text> | |
| <text text-anchor="middle" x="1128" y="-3238" font-family="Times,serif" font-size="15.00">debug</text> | |
| <text text-anchor="middle" x="1128" y="-3221" font-family="Times,serif" font-size="15.00">TaskAnnotator</text> | |
| <text text-anchor="middle" x="1128" y="-3204" font-family="Times,serif" font-size="15.00">RunTask</text> | |
| <text text-anchor="middle" x="1128" y="-3187" font-family="Times,serif" font-size="15.00">0.19s (2.17%)</text> | |
| <text text-anchor="middle" x="1128" y="-3170" font-family="Times,serif" font-size="15.00">of 6.26s (71.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node5" class="node"><title>N5</title> | |
| <g id="a_node5"><a xlink:title="mojo::SimpleWatcher::OnHandleReady (3.21s)"> | |
| <polygon fill="#eddbd5" stroke="#b22e00" points="897,-3105.5 817,-3105.5 817,-3061.5 897,-3061.5 897,-3105.5"/> | |
| <text text-anchor="middle" x="857" y="-3095.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="857" y="-3086.1" font-family="Times,serif" font-size="8.00">SimpleWatcher</text> | |
| <text text-anchor="middle" x="857" y="-3077.1" font-family="Times,serif" font-size="8.00">OnHandleReady</text> | |
| <text text-anchor="middle" x="857" y="-3068.1" font-family="Times,serif" font-size="8.00">0 of 3.21s (36.64%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N5 --> | |
| <g id="edge9" class="edge"><title>N1->N5</title> | |
| <g id="a_edge9"><a xlink:title="base::debug::TaskAnnotator::RunTask -> mojo::SimpleWatcher::OnHandleReady (3.19s)"> | |
| <path fill="none" stroke="#b22e00" stroke-width="2" d="M1064.89,-3165.54C1061.94,-3163.91 1058.97,-3162.39 1056,-3161 1024.15,-3146.14 1012.28,-3154.29 979,-3143 945.282,-3131.56 938.027,-3125.56 906,-3110 905.908,-3109.96 905.817,-3109.91 905.725,-3109.87"/> | |
| <polygon fill="#b22e00" stroke="#b22e00" stroke-width="2" points="907.535,-3106.86 897.02,-3105.56 904.428,-3113.13 907.535,-3106.86"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> mojo::SimpleWatcher::OnHandleReady (3.19s)"> | |
| <text text-anchor="middle" x="996" y="-3131.8" font-family="Times,serif" font-size="14.00"> 3.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node20" class="node"><title>N20</title> | |
| <g id="a_node20"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants (1.56s)"> | |
| <polygon fill="#ede0d8" stroke="#b25313" points="1260,-3105.5 1180,-3105.5 1180,-3061.5 1260,-3061.5 1260,-3105.5"/> | |
| <text text-anchor="middle" x="1220" y="-3095.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1220" y="-3086.1" font-family="Times,serif" font-size="8.00">ModuleTreeLinker</text> | |
| <text text-anchor="middle" x="1220" y="-3077.1" font-family="Times,serif" font-size="8.00">FetchDescendants</text> | |
| <text text-anchor="middle" x="1220" y="-3068.1" font-family="Times,serif" font-size="8.00">0 of 1.56s (17.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N20 --> | |
| <g id="edge17" class="edge"><title>N1->N20</title> | |
| <g id="a_edge17"><a xlink:title="base::debug::TaskAnnotator::RunTask ... blink::ModuleTreeLinker::FetchDescendants (1.56s)"> | |
| <path fill="none" stroke="#b25313" stroke-dasharray="1,5" d="M1166.22,-3160.79C1177.58,-3144.67 1189.6,-3127.62 1199.39,-3113.74"/> | |
| <polygon fill="#b25313" stroke="#b25313" points="1202.27,-3115.73 1205.17,-3105.54 1196.54,-3111.7 1202.27,-3115.73"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="base::debug::TaskAnnotator::RunTask ... blink::ModuleTreeLinker::FetchDescendants (1.56s)"> | |
| <text text-anchor="middle" x="1205" y="-3131.8" font-family="Times,serif" font-size="14.00"> 1.56s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40 --> | |
| <g id="node40" class="node"><title>N40</title> | |
| <g id="a_node40"><a xlink:title="mojo::Message::Message (0.16s)"> | |
| <polygon fill="#edecea" stroke="#b2ada2" points="778.5,-1074.5 701.5,-1074.5 701.5,-1030.5 778.5,-1030.5 778.5,-1074.5"/> | |
| <text text-anchor="middle" x="740" y="-1064.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="740" y="-1055.1" font-family="Times,serif" font-size="8.00">Message</text> | |
| <text text-anchor="middle" x="740" y="-1046.1" font-family="Times,serif" font-size="8.00">Message</text> | |
| <text text-anchor="middle" x="740" y="-1037.1" font-family="Times,serif" font-size="8.00">0 of 0.16s (1.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N40 --> | |
| <g id="edge98" class="edge"><title>N1->N40</title> | |
| <g id="a_edge98"><a xlink:title="base::debug::TaskAnnotator::RunTask ... mojo::Message::Message (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1064.69,-3164.8C1061.82,-3163.4 1058.92,-3162.12 1056,-3161 969.157,-3127.57 222,-3177.56 222,-3084.5 222,-3084.5 222,-3084.5 222,-2640 222,-2467.81 204,-2425.19 204,-2253 204,-2253 204,-2253 204,-1889.5 204,-1812.39 203,-1793.11 203,-1716 203,-1716 203,-1716 203,-1571.5 203,-1362.33 187.884,-1239.66 366,-1130 469.22,-1066.45 615.851,-1054.66 691.177,-1053.11"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="691.375,-1056.6 701.321,-1052.95 691.268,-1049.6 691.375,-1056.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge98-label"><a xlink:title="base::debug::TaskAnnotator::RunTask ... mojo::Message::Message (0.02s)"> | |
| <text text-anchor="middle" x="221" y="-2200.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45 --> | |
| <g id="node45" class="node"><title>N45</title> | |
| <g id="a_node45"><a xlink:title="base::internal::Invoker::Run (0.44s)"> | |
| <polygon fill="#edeae7" stroke="#b2a085" points="1091.5,-3110 1014.5,-3110 1014.5,-3057 1091.5,-3057 1091.5,-3110"/> | |
| <text text-anchor="middle" x="1053" y="-3099.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1053" y="-3090.6" font-family="Times,serif" font-size="8.00">internal</text> | |
| <text text-anchor="middle" x="1053" y="-3081.6" font-family="Times,serif" font-size="8.00">Invoker</text> | |
| <text text-anchor="middle" x="1053" y="-3072.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="1053" y="-3063.6" font-family="Times,serif" font-size="8.00">0 of 0.44s (5.02%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N45 --> | |
| <g id="edge34" class="edge"><title>N1->N45</title> | |
| <g id="a_edge34"><a xlink:title="base::debug::TaskAnnotator::RunTask -> base::internal::Invoker::Run (0.44s)"> | |
| <path fill="none" stroke="#b2a085" d="M1090.66,-3160.92C1086.93,-3154.95 1083.3,-3148.9 1080,-3143 1075.84,-3135.57 1071.77,-3127.4 1068.11,-3119.57"/> | |
| <polygon fill="#b2a085" stroke="#b2a085" points="1071.19,-3117.91 1063.85,-3110.27 1064.83,-3120.82 1071.19,-3117.91"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> base::internal::Invoker::Run (0.44s)"> | |
| <text text-anchor="middle" x="1097" y="-3131.8" font-family="Times,serif" font-size="14.00"> 0.44s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51 --> | |
| <g id="node51" class="node"><title>N51</title> | |
| <g id="a_node51"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork (5.71s)"> | |
| <polygon fill="#edd8d5" stroke="#b21500" points="1398,-3110 1316,-3110 1316,-3057 1398,-3057 1398,-3110"/> | |
| <text text-anchor="middle" x="1357" y="-3099.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1357" y="-3090.6" font-family="Times,serif" font-size="8.00">scheduler</text> | |
| <text text-anchor="middle" x="1357" y="-3081.6" font-family="Times,serif" font-size="8.00">TaskQueueManager</text> | |
| <text text-anchor="middle" x="1357" y="-3072.6" font-family="Times,serif" font-size="8.00">DoWork</text> | |
| <text text-anchor="middle" x="1357" y="-3063.6" font-family="Times,serif" font-size="8.00">0 of 5.71s (65.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N51 --> | |
| <g id="edge4" class="edge"><title>N1->N51</title> | |
| <g id="a_edge4"><a xlink:title="base::debug::TaskAnnotator::RunTask -> blink::scheduler::TaskQueueManager::DoWork (5.67s)"> | |
| <path fill="none" stroke="#b21500" stroke-width="4" d="M1191.18,-3178.99C1227.64,-3158.22 1272.85,-3132.45 1306.85,-3113.08"/> | |
| <polygon fill="#b21500" stroke="#b21500" stroke-width="4" points="1308.73,-3116.04 1315.68,-3108.05 1305.26,-3109.96 1308.73,-3116.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> blink::scheduler::TaskQueueManager::DoWork (5.67s)"> | |
| <text text-anchor="middle" x="1294" y="-3131.8" font-family="Times,serif" font-size="14.00"> 5.67s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80 --> | |
| <g id="node80" class="node"><title>N80</title> | |
| <g id="a_node80"><a xlink:title="blink::ScriptLoader::ExecuteScriptBlock (0.34s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="996.5,-3105.5 915.5,-3105.5 915.5,-3061.5 996.5,-3061.5 996.5,-3105.5"/> | |
| <text text-anchor="middle" x="956" y="-3095.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="956" y="-3086.1" font-family="Times,serif" font-size="8.00">ScriptLoader</text> | |
| <text text-anchor="middle" x="956" y="-3077.1" font-family="Times,serif" font-size="8.00">ExecuteScriptBlock</text> | |
| <text text-anchor="middle" x="956" y="-3068.1" font-family="Times,serif" font-size="8.00">0 of 0.34s (3.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N80 --> | |
| <g id="edge36" class="edge"><title>N1->N80</title> | |
| <g id="a_edge36"><a xlink:title="base::debug::TaskAnnotator::RunTask ... blink::ScriptLoader::ExecuteScriptBlock (0.34s)"> | |
| <path fill="none" stroke="#b2a58f" stroke-dasharray="1,5" d="M1064.93,-3167.15C1040.38,-3148.52 1013.15,-3127.86 992.053,-3111.85"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="994.079,-3109 983.997,-3105.74 989.848,-3114.57 994.079,-3109"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="base::debug::TaskAnnotator::RunTask ... blink::ScriptLoader::ExecuteScriptBlock (0.34s)"> | |
| <text text-anchor="middle" x="1049" y="-3131.8" font-family="Times,serif" font-size="14.00"> 0.34s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2 --> | |
| <g id="node2" class="node"><title>N2</title> | |
| <g id="a_node2"><a xlink:title="base::RunLoop::Run (7.22s)"> | |
| <polygon fill="#edd6d5" stroke="#b20a00" points="1168,-3689 1088,-3689 1088,-3645 1168,-3645 1168,-3689"/> | |
| <text text-anchor="middle" x="1128" y="-3678.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1128" y="-3669.6" font-family="Times,serif" font-size="8.00">RunLoop</text> | |
| <text text-anchor="middle" x="1128" y="-3660.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="1128" y="-3651.6" font-family="Times,serif" font-size="8.00">0 of 7.22s (82.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node17" class="node"><title>N17</title> | |
| <g id="a_node17"><a xlink:title="base::MessagePumpLibevent::Run (1.51s)"> | |
| <polygon fill="#ede1d8" stroke="#b25718" points="1066.5,-3594 975.5,-3594 975.5,-3550 1066.5,-3550 1066.5,-3594"/> | |
| <text text-anchor="middle" x="1021" y="-3583.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1021" y="-3574.6" font-family="Times,serif" font-size="8.00">MessagePumpLibevent</text> | |
| <text text-anchor="middle" x="1021" y="-3565.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="1021" y="-3556.6" font-family="Times,serif" font-size="8.00">0 of 1.51s (17.24%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N17 --> | |
| <g id="edge21" class="edge"><title>N2->N17</title> | |
| <g id="a_edge21"><a xlink:title="base::RunLoop::Run -> base::MessagePumpLibevent::Run (1.51s)"> | |
| <path fill="none" stroke="#b25718" d="M1103.72,-3644.9C1088.67,-3631.82 1069.17,-3614.87 1052.89,-3600.72"/> | |
| <polygon fill="#b25718" stroke="#b25718" points="1055.03,-3597.94 1045.18,-3594.02 1050.44,-3603.22 1055.03,-3597.94"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="base::RunLoop::Run -> base::MessagePumpLibevent::Run (1.51s)"> | |
| <text text-anchor="middle" x="1098" y="-3615.8" font-family="Times,serif" font-size="14.00"> 1.51s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26 --> | |
| <g id="node26" class="node"><title>N26</title> | |
| <g id="a_node26"><a xlink:title="base::MessagePumpDefault::Run (5.71s)"> | |
| <polygon fill="#edd8d5" stroke="#b21500" points="1171.5,-3594 1084.5,-3594 1084.5,-3550 1171.5,-3550 1171.5,-3594"/> | |
| <text text-anchor="middle" x="1128" y="-3583.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1128" y="-3574.6" font-family="Times,serif" font-size="8.00">MessagePumpDefault</text> | |
| <text text-anchor="middle" x="1128" y="-3565.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="1128" y="-3556.6" font-family="Times,serif" font-size="8.00">0 of 5.71s (65.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N26 --> | |
| <g id="edge3" class="edge"><title>N2->N26</title> | |
| <g id="a_edge3"><a xlink:title="base::RunLoop::Run -> base::MessagePumpDefault::Run (5.71s)"> | |
| <path fill="none" stroke="#b21500" stroke-width="4" d="M1128,-3644.9C1128,-3632.89 1128,-3617.62 1128,-3604.24"/> | |
| <polygon fill="#b21500" stroke="#b21500" stroke-width="4" points="1131.5,-3604.02 1128,-3594.02 1124.5,-3604.02 1131.5,-3604.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="base::RunLoop::Run -> base::MessagePumpDefault::Run (5.71s)"> | |
| <text text-anchor="middle" x="1145" y="-3615.8" font-family="Times,serif" font-size="14.00"> 5.71s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node3" class="node"><title>N3</title> | |
| <g id="a_node3"><a xlink:title="__libc_start_main (5.50s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="1168,-3780 1088,-3780 1088,-3744 1168,-3744 1168,-3780"/> | |
| <text text-anchor="middle" x="1128" y="-3764.6" font-family="Times,serif" font-size="8.00">__libc_start_main</text> | |
| <text text-anchor="middle" x="1128" y="-3755.6" font-family="Times,serif" font-size="8.00">0 of 5.50s (62.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N2 --> | |
| <g id="edge7" class="edge"><title>N3->N2</title> | |
| <g id="a_edge7"><a xlink:title="__libc_start_main ... base::RunLoop::Run (5.49s)"> | |
| <path fill="none" stroke="#b21700" stroke-width="4" stroke-dasharray="1,5" d="M1128,-3743.94C1128,-3731.54 1128,-3714.38 1128,-3699.51"/> | |
| <polygon fill="#b21700" stroke="#b21700" stroke-width="4" points="1131.5,-3699.19 1128,-3689.19 1124.5,-3699.19 1131.5,-3699.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="__libc_start_main ... base::RunLoop::Run (5.49s)"> | |
| <text text-anchor="middle" x="1145" y="-3710.8" font-family="Times,serif" font-size="14.00"> 5.49s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node4" class="node"><title>N4</title> | |
| <g id="a_node4"><a xlink:title="<unknown> (0.92s)"> | |
| <polygon fill="#ede6e0" stroke="#b28254" points="1016.5,-1865 849.5,-1865 849.5,-1788 1016.5,-1788 1016.5,-1865"/> | |
| <text text-anchor="middle" x="933" y="-1844.2" font-family="Times,serif" font-size="21.00"><unknown></text> | |
| <text text-anchor="middle" x="933" y="-1821.2" font-family="Times,serif" font-size="21.00">0.83s (9.47%)</text> | |
| <text text-anchor="middle" x="933" y="-1798.2" font-family="Times,serif" font-size="21.00">of 0.92s (10.50%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52 --> | |
| <g id="node52" class="node"><title>N52</title> | |
| <g id="a_node52"><a xlink:title="blink::ModuleMap::FetchSingleModuleScript (1.31s)"> | |
| <polygon fill="#ede3db" stroke="#b2672d" points="1101,-1737 1003,-1737 1003,-1693 1101,-1693 1101,-1737"/> | |
| <text text-anchor="middle" x="1052" y="-1726.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1052" y="-1717.6" font-family="Times,serif" font-size="8.00">ModuleMap</text> | |
| <text text-anchor="middle" x="1052" y="-1708.6" font-family="Times,serif" font-size="8.00">FetchSingleModuleScript</text> | |
| <text text-anchor="middle" x="1052" y="-1699.6" font-family="Times,serif" font-size="8.00">0 of 1.31s (14.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N52 --> | |
| <g id="edge111" class="edge"><title>N4->N52</title> | |
| <g id="a_edge111"><a xlink:title="<unknown> ... blink::ModuleMap::FetchSingleModuleScript (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M973.953,-1787.82C989.496,-1773.51 1006.92,-1757.49 1021.35,-1744.21"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1024.04,-1746.49 1029.03,-1737.14 1019.3,-1741.33 1024.04,-1746.49"/> | |
| </a> | |
| </g> | |
| <g id="a_edge111-label"><a xlink:title="<unknown> ... blink::ModuleMap::FetchSingleModuleScript (0.01s)"> | |
| <text text-anchor="middle" x="1024" y="-1758.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node10" class="node"><title>N10</title> | |
| <g id="a_node10"><a xlink:title="content::URLResponseBodyConsumer::OnReadable (1.69s)"> | |
| <polygon fill="#eddfd6" stroke="#b24906" points="749,-2777 609,-2777 609,-2714 749,-2714 749,-2777"/> | |
| <text text-anchor="middle" x="679" y="-2765" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="679" y="-2754" font-family="Times,serif" font-size="10.00">URLResponseBodyConsumer</text> | |
| <text text-anchor="middle" x="679" y="-2743" font-family="Times,serif" font-size="10.00">OnReadable</text> | |
| <text text-anchor="middle" x="679" y="-2732" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="679" y="-2721" font-family="Times,serif" font-size="10.00">of 1.69s (19.29%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N10 --> | |
| <g id="edge15" class="edge"><title>N5->N10</title> | |
| <g id="a_edge15"><a xlink:title="mojo::SimpleWatcher::OnHandleReady -> content::URLResponseBodyConsumer::OnReadable (1.66s)"> | |
| <path fill="none" stroke="#b24b09" d="M842.287,-3061.5C831.931,-3046.36 818.01,-3025.29 807,-3006 763.755,-2930.22 720.269,-2837.81 696.776,-2786.23"/> | |
| <polygon fill="#b24b09" stroke="#b24b09" points="699.946,-2784.74 692.627,-2777.08 693.572,-2787.64 699.946,-2784.74"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="mojo::SimpleWatcher::OnHandleReady -> content::URLResponseBodyConsumer::OnReadable (1.66s)"> | |
| <text text-anchor="middle" x="785" y="-2923.8" font-family="Times,serif" font-size="14.00"> 1.66s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node24" class="node"><title>N24</title> | |
| <g id="a_node24"><a xlink:title="mojo::Connector::ReadSingleMessage (1.57s)"> | |
| <polygon fill="#ede0d7" stroke="#b25212" points="897.5,-3001.5 816.5,-3001.5 816.5,-2957.5 897.5,-2957.5 897.5,-3001.5"/> | |
| <text text-anchor="middle" x="857" y="-2991.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="857" y="-2982.1" font-family="Times,serif" font-size="8.00">Connector</text> | |
| <text text-anchor="middle" x="857" y="-2973.1" font-family="Times,serif" font-size="8.00">ReadSingleMessage</text> | |
| <text text-anchor="middle" x="857" y="-2964.1" font-family="Times,serif" font-size="8.00">0 of 1.57s (17.92%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N24 --> | |
| <g id="edge18" class="edge"><title>N5->N24</title> | |
| <g id="a_edge18"><a xlink:title="mojo::SimpleWatcher::OnHandleReady ... mojo::Connector::ReadSingleMessage (1.55s)"> | |
| <path fill="none" stroke="#b25414" stroke-dasharray="1,5" d="M857,-3061.37C857,-3047.01 857,-3027.77 857,-3011.66"/> | |
| <polygon fill="#b25414" stroke="#b25414" points="860.5,-3011.61 857,-3001.61 853.5,-3011.61 860.5,-3011.61"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="mojo::SimpleWatcher::OnHandleReady ... mojo::Connector::ReadSingleMessage (1.55s)"> | |
| <text text-anchor="middle" x="874" y="-3027.8" font-family="Times,serif" font-size="14.00"> 1.55s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6 --> | |
| <g id="node6" class="node"><title>N6</title> | |
| <g id="a_node6"><a xlink:title="base::MessageLoop::DoWork (5.94s)"> | |
| <polygon fill="#edd8d5" stroke="#b21300" points="1172.5,-3499 1083.5,-3499 1083.5,-3436 1172.5,-3436 1172.5,-3499"/> | |
| <text text-anchor="middle" x="1128" y="-3487" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="1128" y="-3476" font-family="Times,serif" font-size="10.00">MessageLoop</text> | |
| <text text-anchor="middle" x="1128" y="-3465" font-family="Times,serif" font-size="10.00">DoWork</text> | |
| <text text-anchor="middle" x="1128" y="-3454" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1128" y="-3443" font-family="Times,serif" font-size="10.00">of 5.94s (67.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node29" class="node"><title>N29</title> | |
| <g id="a_node29"><a xlink:title="__pthread_mutex_unlock_usercnt (0.14s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea4" points="1612.5,-320.5 1411.5,-320.5 1411.5,-282.5 1612.5,-282.5 1612.5,-320.5"/> | |
| <text text-anchor="middle" x="1512" y="-305.3" font-family="Times,serif" font-size="14.00">__pthread_mutex_unlock_usercnt</text> | |
| <text text-anchor="middle" x="1512" y="-290.3" font-family="Times,serif" font-size="14.00">0.14s (1.60%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N29 --> | |
| <g id="edge114" class="edge"><title>N6->N29</title> | |
| <g id="a_edge114"><a xlink:title="base::MessageLoop::DoWork -> __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1172.93,-3466.46C1300.38,-3465.16 1655,-3452.71 1655,-3354.5 1655,-3354.5 1655,-3354.5 1655,-1984 1655,-1939.11 1654.92,-1927.88 1656,-1883 1658.8,-1766.5 1666,-1737.53 1666,-1621 1666,-1621 1666,-1621 1666,-842 1666,-645.638 1678.58,-591.193 1626,-402 1621.64,-386.295 1620.66,-381.329 1610,-369 1595.09,-351.759 1574.72,-336.98 1556.41,-325.763"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1558,-322.641 1547.62,-320.548 1554.43,-328.661 1558,-322.641"/> | |
| </a> | |
| </g> | |
| <g id="a_edge114-label"><a xlink:title="base::MessageLoop::DoWork -> __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1673" y="-1886.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node36" class="node"><title>N36</title> | |
| <g id="a_node36"><a xlink:title="base::MessageLoop::RunTask (5.96s)"> | |
| <polygon fill="#edd8d5" stroke="#b21300" points="1172.5,-3385 1083.5,-3385 1083.5,-3322 1172.5,-3322 1172.5,-3385"/> | |
| <text text-anchor="middle" x="1128" y="-3373" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="1128" y="-3362" font-family="Times,serif" font-size="10.00">MessageLoop</text> | |
| <text text-anchor="middle" x="1128" y="-3351" font-family="Times,serif" font-size="10.00">RunTask</text> | |
| <text text-anchor="middle" x="1128" y="-3340" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1128" y="-3329" font-family="Times,serif" font-size="10.00">of 5.96s (68.04%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N36 --> | |
| <g id="edge2" class="edge"><title>N6->N36</title> | |
| <g id="a_edge2"><a xlink:title="base::MessageLoop::DoWork -> base::MessageLoop::RunTask (5.90s)"> | |
| <path fill="none" stroke="#b21300" stroke-width="4" d="M1128,-3435.9C1128,-3423.43 1128,-3408.82 1128,-3395.46"/> | |
| <polygon fill="#b21300" stroke="#b21300" stroke-width="4" points="1131.5,-3395.07 1128,-3385.07 1124.5,-3395.07 1131.5,-3395.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="base::MessageLoop::DoWork -> base::MessageLoop::RunTask (5.90s)"> | |
| <text text-anchor="middle" x="1145" y="-3406.8" font-family="Times,serif" font-size="14.00"> 5.90s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node7" class="node"><title>N7</title> | |
| <g id="a_node7"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal (1.54s)"> | |
| <polygon fill="#ede0d8" stroke="#b25515" points="810.5,-2054 547.5,-2054 547.5,-1916 810.5,-1916 810.5,-2054"/> | |
| <text text-anchor="middle" x="679" y="-2030.8" font-family="Times,serif" font-size="24.00">v8</text> | |
| <text text-anchor="middle" x="679" y="-2004.8" font-family="Times,serif" font-size="24.00">ScriptCompiler</text> | |
| <text text-anchor="middle" x="679" y="-1978.8" font-family="Times,serif" font-size="24.00">CompileUnboundInternal</text> | |
| <text text-anchor="middle" x="679" y="-1952.8" font-family="Times,serif" font-size="24.00">1.35s (15.41%)</text> | |
| <text text-anchor="middle" x="679" y="-1926.8" font-family="Times,serif" font-size="24.00">of 1.54s (17.58%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N4 --> | |
| <g id="edge94" class="edge"><title>N7->N4</title> | |
| <g id="a_edge94"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal ... <unknown> (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M746.676,-1915.99C760.627,-1904.04 775.74,-1892.42 791,-1883 806.202,-1873.61 823.259,-1865.32 840.137,-1858.19"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="841.562,-1861.39 849.482,-1854.35 838.902,-1854.91 841.562,-1861.39"/> | |
| </a> | |
| </g> | |
| <g id="a_edge94-label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal ... <unknown> (0.03s)"> | |
| <text text-anchor="middle" x="808" y="-1886.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node14" class="node"><title>N14</title> | |
| <g id="a_node14"><a xlink:title="operator new (0.32s)"> | |
| <polygon fill="#edebe8" stroke="#b2a691" points="182,-323.5 92,-323.5 92,-279.5 182,-279.5 182,-323.5"/> | |
| <text text-anchor="middle" x="137" y="-310.7" font-family="Times,serif" font-size="11.00">operator new</text> | |
| <text text-anchor="middle" x="137" y="-298.7" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text> | |
| <text text-anchor="middle" x="137" y="-286.7" font-family="Times,serif" font-size="11.00">of 0.32s (3.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N14 --> | |
| <g id="edge95" class="edge"><title>N7->N14</title> | |
| <g id="a_edge95"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal -> operator new (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" d="M572.191,-1915.95C551.459,-1900.45 530.698,-1883.15 513,-1865 441.753,-1791.91 438.497,-1761.3 384,-1675 348.796,-1619.25 340.017,-1605.18 309,-1547 271.83,-1477.27 0,-985.516 0,-906.5 0,-906.5 0,-906.5 0,-447 0,-394.613 48.0054,-353.614 87.1826,-328.877"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="89.1925,-331.75 95.8955,-323.545 85.5388,-325.779 89.1925,-331.75"/> | |
| </a> | |
| </g> | |
| <g id="a_edge95-label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal -> operator new (0.03s)"> | |
| <text text-anchor="middle" x="144" y="-1162.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N29 --> | |
| <g id="edge139" class="edge"><title>N7->N29</title> | |
| <g id="a_edge139"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal -> __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M717.925,-1915.7C766.732,-1829.87 852.769,-1677.93 925,-1547 928.386,-1540.86 982.504,-1442.55 985,-1436 1071.12,-1209.98 1084.11,-1139.27 1067,-898 1058.98,-784.927 1031,-758.857 1031,-645.5 1031,-645.5 1031,-645.5 1031,-447 1031,-411.779 1019.37,-393.16 1045,-369 1069.59,-345.819 1162.52,-355.564 1196,-351 1264.37,-341.68 1340.87,-329.974 1401.47,-320.397"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1402.11,-323.839 1411.44,-318.818 1401.01,-316.925 1402.11,-323.839"/> | |
| </a> | |
| </g> | |
| <g id="a_edge139-label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal -> __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1087" y="-1162.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39 --> | |
| <g id="node39" class="node"><title>N39</title> | |
| <g id="a_node39"><a xlink:title="(anonymous namespace)::do_free_with_callback (0.12s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="409,-612 275,-612 275,-552 409,-552 409,-612"/> | |
| <text text-anchor="middle" x="342" y="-598.4" font-family="Times,serif" font-size="12.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="342" y="-585.4" font-family="Times,serif" font-size="12.00">do_free_with_callback</text> | |
| <text text-anchor="middle" x="342" y="-572.4" font-family="Times,serif" font-size="12.00">0.06s (0.68%)</text> | |
| <text text-anchor="middle" x="342" y="-559.4" font-family="Times,serif" font-size="12.00">of 0.12s (1.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N39 --> | |
| <g id="edge93" class="edge"><title>N7->N39</title> | |
| <g id="a_edge93"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal -> (anonymous namespace)::do_free_with_callback (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" d="M617.638,-1915.7C582.393,-1874.88 538.435,-1821.16 504,-1770 472.905,-1723.8 477.904,-1704.18 444,-1660 412.612,-1619.1 386.549,-1624.19 360,-1580 226.43,-1357.66 283,-1260.88 283,-1001.5 283,-1001.5 283,-1001.5 283,-711.5 283,-678.814 298.96,-645.368 314.279,-620.794"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="317.371,-622.457 319.863,-612.16 311.493,-618.656 317.371,-622.457"/> | |
| </a> | |
| </g> | |
| <g id="a_edge93-label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal -> (anonymous namespace)::do_free_with_callback (0.03s)"> | |
| <text text-anchor="middle" x="290" y="-1284.3" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8 --> | |
| <g id="node8" class="node"><title>N8</title> | |
| <g id="a_node8"><a xlink:title="content::ResourceDispatcher::OnRequestComplete (2.11s)"> | |
| <polygon fill="#edddd5" stroke="#b23e00" points="720.5,-2663 637.5,-2663 637.5,-2619 720.5,-2619 720.5,-2663"/> | |
| <text text-anchor="middle" x="679" y="-2652.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="679" y="-2643.6" font-family="Times,serif" font-size="8.00">ResourceDispatcher</text> | |
| <text text-anchor="middle" x="679" y="-2634.6" font-family="Times,serif" font-size="8.00">OnRequestComplete</text> | |
| <text text-anchor="middle" x="679" y="-2625.6" font-family="Times,serif" font-size="8.00">0 of 2.11s (24.09%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node34" class="node"><title>N34</title> | |
| <g id="a_node34"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)"> | |
| <polygon fill="#edddd5" stroke="#b23e00" points="722,-2568 636,-2568 636,-2515 722,-2515 722,-2568"/> | |
| <text text-anchor="middle" x="679" y="-2557.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="679" y="-2548.6" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="679" y="-2539.6" font-family="Times,serif" font-size="8.00">Context</text> | |
| <text text-anchor="middle" x="679" y="-2530.6" font-family="Times,serif" font-size="8.00">OnCompletedRequest</text> | |
| <text text-anchor="middle" x="679" y="-2521.6" font-family="Times,serif" font-size="8.00">0 of 2.11s (24.09%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N34 --> | |
| <g id="edge10" class="edge"><title>N8->N34</title> | |
| <g id="a_edge10"><a xlink:title="content::ResourceDispatcher::OnRequestComplete -> content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)"> | |
| <path fill="none" stroke="#b23e00" stroke-width="2" d="M679,-2618.84C679,-2606.97 679,-2591.85 679,-2578.19"/> | |
| <polygon fill="#b23e00" stroke="#b23e00" stroke-width="2" points="682.5,-2578.12 679,-2568.12 675.5,-2578.12 682.5,-2578.12"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="content::ResourceDispatcher::OnRequestComplete -> content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)"> | |
| <text text-anchor="middle" x="696" y="-2589.8" font-family="Times,serif" font-size="14.00"> 2.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9 --> | |
| <g id="node9" class="node"><title>N9</title> | |
| <g id="a_node9"><a xlink:title="start_thread (1.82s)"> | |
| <polygon fill="#edded5" stroke="#b24300" points="1274,-3920 1194,-3920 1194,-3884 1274,-3884 1274,-3920"/> | |
| <text text-anchor="middle" x="1234" y="-3904.6" font-family="Times,serif" font-size="8.00">start_thread</text> | |
| <text text-anchor="middle" x="1234" y="-3895.6" font-family="Times,serif" font-size="8.00">0 of 1.82s (20.78%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node21" class="node"><title>N21</title> | |
| <g id="a_node21"><a xlink:title="base::(anonymous namespace)::ThreadFunc (1.82s)"> | |
| <polygon fill="#edded5" stroke="#b24300" points="1281.5,-3784 1186.5,-3784 1186.5,-3740 1281.5,-3740 1281.5,-3784"/> | |
| <text text-anchor="middle" x="1234" y="-3773.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1234" y="-3764.6" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1234" y="-3755.6" font-family="Times,serif" font-size="8.00">ThreadFunc</text> | |
| <text text-anchor="middle" x="1234" y="-3746.6" font-family="Times,serif" font-size="8.00">0 of 1.82s (20.78%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N21 --> | |
| <g id="edge13" class="edge"><title>N9->N21</title> | |
| <g id="a_edge13"><a xlink:title="start_thread -> base::(anonymous namespace)::ThreadFunc (1.82s)"> | |
| <path fill="none" stroke="#b24300" stroke-width="2" d="M1234,-3883.8C1234,-3861.48 1234,-3822.1 1234,-3794.39"/> | |
| <polygon fill="#b24300" stroke="#b24300" stroke-width="2" points="1237.5,-3794.03 1234,-3784.03 1230.5,-3794.03 1237.5,-3794.03"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="start_thread -> base::(anonymous namespace)::ThreadFunc (1.82s)"> | |
| <text text-anchor="middle" x="1251" y="-3805.8" font-family="Times,serif" font-size="14.00"> 1.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N8 --> | |
| <g id="edge22" class="edge"><title>N10->N8</title> | |
| <g id="a_edge22"><a xlink:title="content::URLResponseBodyConsumer::OnReadable -> content::ResourceDispatcher::OnRequestComplete (1.36s)"> | |
| <path fill="none" stroke="#b26327" d="M679,-2713.75C679,-2701.03 679,-2686.3 679,-2673.51"/> | |
| <polygon fill="#b26327" stroke="#b26327" points="682.5,-2673.3 679,-2663.3 675.5,-2673.3 682.5,-2673.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-label"><a xlink:title="content::URLResponseBodyConsumer::OnReadable -> content::ResourceDispatcher::OnRequestComplete (1.36s)"> | |
| <text text-anchor="middle" x="696" y="-2684.8" font-family="Times,serif" font-size="14.00"> 1.36s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node11" class="node"><title>N11</title> | |
| <g id="a_node11"><a xlink:title="event_base_loop (1.16s)"> | |
| <polygon fill="#ede4dd" stroke="#b2723c" points="1061.5,-3489.5 966.5,-3489.5 966.5,-3445.5 1061.5,-3445.5 1061.5,-3489.5"/> | |
| <text text-anchor="middle" x="1014" y="-3476.7" font-family="Times,serif" font-size="11.00">event_base_loop</text> | |
| <text text-anchor="middle" x="1014" y="-3464.7" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text> | |
| <text text-anchor="middle" x="1014" y="-3452.7" font-family="Times,serif" font-size="11.00">of 1.16s (13.24%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N4 --> | |
| <g id="edge76" class="edge"><title>N11->N4</title> | |
| <g id="a_edge76"><a xlink:title="event_base_loop -> <unknown> (0.05s)"> | |
| <path fill="none" stroke="#b2b1ad" d="M966.195,-3465.87C775.049,-3462.75 76,-3445.11 76,-3354.5 76,-3354.5 76,-3354.5 76,-2926.5 76,-2783.06 102.235,-2743.2 174,-2619 249.238,-2488.79 300.934,-2480.35 402,-2369 426.955,-2341.5 433.72,-2335.09 458,-2307 534.169,-2218.87 538.327,-2182.83 625,-2105 644.811,-2087.21 650.024,-2081.23 675,-2072 735.502,-2049.65 766.298,-2091.18 819,-2054 879.152,-2011.56 909.362,-1927.92 923.081,-1875.01"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="926.508,-1875.74 925.532,-1865.19 919.716,-1874.04 926.508,-1875.74"/> | |
| </a> | |
| </g> | |
| <g id="a_edge76-label"><a xlink:title="event_base_loop -> <unknown> (0.05s)"> | |
| <text text-anchor="middle" x="191" y="-2637.3" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node23" class="node"><title>N23</title> | |
| <g id="a_node23"><a xlink:title="epoll_wait (0.47s)"> | |
| <polygon fill="#edeae6" stroke="#b29e82" points="836,-3377.5 718,-3377.5 718,-3329.5 836,-3329.5 836,-3377.5"/> | |
| <text text-anchor="middle" x="777" y="-3359.1" font-family="Times,serif" font-size="18.00">epoll_wait</text> | |
| <text text-anchor="middle" x="777" y="-3339.1" font-family="Times,serif" font-size="18.00">0.47s (5.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N23 --> | |
| <g id="edge33" class="edge"><title>N11->N23</title> | |
| <g id="a_edge33"><a xlink:title="event_base_loop -> epoll_wait (0.47s)"> | |
| <path fill="none" stroke="#b29e82" d="M969.422,-3445.43C931.401,-3427.47 876.475,-3401.51 835.03,-3381.92"/> | |
| <polygon fill="#b29e82" stroke="#b29e82" points="836.408,-3378.7 825.871,-3377.6 833.417,-3385.03 836.408,-3378.7"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-label"><a xlink:title="event_base_loop -> epoll_wait (0.47s)"> | |
| <text text-anchor="middle" x="927" y="-3406.8" font-family="Times,serif" font-size="14.00"> 0.47s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node27" class="node"><title>N27</title> | |
| <g id="a_node27"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage (0.57s)"> | |
| <polygon fill="#ede9e5" stroke="#b29878" points="1047,-3242.5 967,-3242.5 967,-3189.5 1047,-3189.5 1047,-3242.5"/> | |
| <text text-anchor="middle" x="1007" y="-3232.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1007" y="-3223.1" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="1007" y="-3214.1" font-family="Times,serif" font-size="8.00">NodeChannel</text> | |
| <text text-anchor="middle" x="1007" y="-3205.1" font-family="Times,serif" font-size="8.00">OnChannelMessage</text> | |
| <text text-anchor="middle" x="1007" y="-3196.1" font-family="Times,serif" font-size="8.00">0 of 0.57s (6.51%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N27 --> | |
| <g id="edge31" class="edge"><title>N11->N27</title> | |
| <g id="a_edge31"><a xlink:title="event_base_loop ... mojo::edk::NodeChannel::OnChannelMessage (0.57s)"> | |
| <path fill="none" stroke="#b29878" stroke-dasharray="1,5" d="M1013.4,-3445.23C1012.2,-3402.45 1009.49,-3305.61 1008.01,-3252.87"/> | |
| <polygon fill="#b29878" stroke="#b29878" points="1011.5,-3252.53 1007.72,-3242.63 1004.5,-3252.72 1011.5,-3252.53"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="event_base_loop ... mojo::edk::NodeChannel::OnChannelMessage (0.57s)"> | |
| <text text-anchor="middle" x="1029" y="-3349.8" font-family="Times,serif" font-size="14.00"> 0.57s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node28" class="node"><title>N28</title> | |
| <g id="a_node28"><a xlink:title="__libc_recvmsg (0.40s)"> | |
| <polygon fill="#edebe7" stroke="#b2a289" points="978,-3376.5 854,-3376.5 854,-3330.5 978,-3330.5 978,-3376.5"/> | |
| <text text-anchor="middle" x="916" y="-3358.9" font-family="Times,serif" font-size="17.00">__libc_recvmsg</text> | |
| <text text-anchor="middle" x="916" y="-3339.9" font-family="Times,serif" font-size="17.00">0.40s (4.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N28 --> | |
| <g id="edge125" class="edge"><title>N11->N28</title> | |
| <g id="a_edge125"><a xlink:title="event_base_loop ... __libc_recvmsg (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M991.956,-3445.27C983.609,-3436.97 974.157,-3427.23 966,-3418 956.763,-3407.55 947.16,-3395.63 938.867,-3384.97"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="941.404,-3382.53 932.53,-3376.74 935.858,-3386.8 941.404,-3382.53"/> | |
| </a> | |
| </g> | |
| <g id="a_edge125-label"><a xlink:title="event_base_loop ... __libc_recvmsg (0.01s)"> | |
| <text text-anchor="middle" x="983" y="-3406.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12 --> | |
| <g id="node12" class="node"><title>N12</title> | |
| <g id="a_node12"><a xlink:title="syscall (0.30s)"> | |
| <polygon fill="#edebe9" stroke="#b2a793" points="1214.5,-865 1107.5,-865 1107.5,-821 1214.5,-821 1214.5,-865"/> | |
| <text text-anchor="middle" x="1161" y="-848.2" font-family="Times,serif" font-size="16.00">syscall</text> | |
| <text text-anchor="middle" x="1161" y="-830.2" font-family="Times,serif" font-size="16.00">0.30s (3.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node13" class="node"><title>N13</title> | |
| <g id="a_node13"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept (1.36s)"> | |
| <polygon fill="#ede2da" stroke="#b26327" points="930,-2902 784,-2902 784,-2828 930,-2828 930,-2902"/> | |
| <text text-anchor="middle" x="857" y="-2890" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="857" y="-2879" font-family="Times,serif" font-size="10.00">mojom</text> | |
| <text text-anchor="middle" x="857" y="-2868" font-family="Times,serif" font-size="10.00">URLLoaderClientStubDispatch</text> | |
| <text text-anchor="middle" x="857" y="-2857" font-family="Times,serif" font-size="10.00">Accept</text> | |
| <text text-anchor="middle" x="857" y="-2846" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="857" y="-2835" font-family="Times,serif" font-size="10.00">of 1.36s (15.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N10 --> | |
| <g id="edge84" class="edge"><title>N13->N10</title> | |
| <g id="a_edge84"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::URLResponseBodyConsumer::OnReadable (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M802.142,-2827.79C780.409,-2813.44 755.474,-2796.98 733.751,-2782.64"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="735.559,-2779.64 725.286,-2777.05 731.703,-2785.48 735.559,-2779.64"/> | |
| </a> | |
| </g> | |
| <g id="a_edge84-label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::URLResponseBodyConsumer::OnReadable (0.03s)"> | |
| <text text-anchor="middle" x="791" y="-2798.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node35" class="node"><title>N35</title> | |
| <g id="a_node35"><a xlink:title="content::ThrottlingURLLoader::OnComplete (0.90s)"> | |
| <polygon fill="#ede6e0" stroke="#b28456" points="856.5,-2767.5 767.5,-2767.5 767.5,-2723.5 856.5,-2723.5 856.5,-2767.5"/> | |
| <text text-anchor="middle" x="812" y="-2757.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="812" y="-2748.1" font-family="Times,serif" font-size="8.00">ThrottlingURLLoader</text> | |
| <text text-anchor="middle" x="812" y="-2739.1" font-family="Times,serif" font-size="8.00">OnComplete</text> | |
| <text text-anchor="middle" x="812" y="-2730.1" font-family="Times,serif" font-size="8.00">0 of 0.90s (10.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N35 --> | |
| <g id="edge28" class="edge"><title>N13->N35</title> | |
| <g id="a_edge28"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept -> content::ThrottlingURLLoader::OnComplete (0.90s)"> | |
| <path fill="none" stroke="#b28456" d="M843.131,-2827.79C836.946,-2811.64 829.734,-2792.81 823.81,-2777.34"/> | |
| <polygon fill="#b28456" stroke="#b28456" points="826.972,-2775.81 820.127,-2767.72 820.435,-2778.31 826.972,-2775.81"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept -> content::ThrottlingURLLoader::OnComplete (0.90s)"> | |
| <text text-anchor="middle" x="853" y="-2798.8" font-family="Times,serif" font-size="14.00"> 0.90s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38 --> | |
| <g id="node38" class="node"><title>N38</title> | |
| <g id="a_node38"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse (0.28s)"> | |
| <polygon fill="#edebe9" stroke="#b2a895" points="961,-2772 875,-2772 875,-2719 961,-2719 961,-2772"/> | |
| <text text-anchor="middle" x="918" y="-2761.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="918" y="-2752.6" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="918" y="-2743.6" font-family="Times,serif" font-size="8.00">Context</text> | |
| <text text-anchor="middle" x="918" y="-2734.6" font-family="Times,serif" font-size="8.00">OnReceivedResponse</text> | |
| <text text-anchor="middle" x="918" y="-2725.6" font-family="Times,serif" font-size="8.00">0 of 0.28s (3.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N38 --> | |
| <g id="edge41" class="edge"><title>N13->N38</title> | |
| <g id="a_edge41"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::WebURLLoaderImpl::Context::OnReceivedResponse (0.28s)"> | |
| <path fill="none" stroke="#b2a895" stroke-dasharray="1,5" d="M875.8,-2827.79C883.438,-2813.07 892.231,-2796.14 899.806,-2781.55"/> | |
| <polygon fill="#b2a895" stroke="#b2a895" points="903.083,-2782.83 904.584,-2772.34 896.87,-2779.6 903.083,-2782.83"/> | |
| </a> | |
| </g> | |
| <g id="a_edge41-label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::WebURLLoaderImpl::Context::OnReceivedResponse (0.28s)"> | |
| <text text-anchor="middle" x="909" y="-2798.8" font-family="Times,serif" font-size="14.00"> 0.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54 --> | |
| <g id="node54" class="node"><title>N54</title> | |
| <g id="a_node54"><a xlink:title="tc_malloc (0.29s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="185,-187.5 89,-187.5 89,-140.5 185,-140.5 185,-187.5"/> | |
| <text text-anchor="middle" x="137" y="-173.9" font-family="Times,serif" font-size="12.00">tc_malloc</text> | |
| <text text-anchor="middle" x="137" y="-160.9" font-family="Times,serif" font-size="12.00">0.05s (0.57%)</text> | |
| <text text-anchor="middle" x="137" y="-147.9" font-family="Times,serif" font-size="12.00">of 0.29s (3.31%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N54 --> | |
| <g id="edge42" class="edge"><title>N14->N54</title> | |
| <g id="a_edge42"><a xlink:title="operator new -> tc_malloc (0.28s)"> | |
| <path fill="none" stroke="#b2a895" d="M137,-279.328C137,-257.575 137,-223.406 137,-198.082"/> | |
| <polygon fill="#b2a895" stroke="#b2a895" points="140.5,-197.832 137,-187.833 133.5,-197.833 140.5,-197.832"/> | |
| </a> | |
| </g> | |
| <g id="a_edge42-label"><a xlink:title="operator new -> tc_malloc (0.28s)"> | |
| <text text-anchor="middle" x="154" y="-222.8" font-family="Times,serif" font-size="14.00"> 0.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node15" class="node"><title>N15</title> | |
| <g id="a_node15"><a xlink:title="__libc_send (0.41s)"> | |
| <polygon fill="#edeae7" stroke="#b2a188" points="1405.5,-3925 1292.5,-3925 1292.5,-3879 1405.5,-3879 1405.5,-3925"/> | |
| <text text-anchor="middle" x="1349" y="-3907.4" font-family="Times,serif" font-size="17.00">__libc_send</text> | |
| <text text-anchor="middle" x="1349" y="-3888.4" font-family="Times,serif" font-size="17.00">0.41s (4.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16 --> | |
| <g id="node16" class="node"><title>N16</title> | |
| <g id="a_node16"><a xlink:title="base::TaskRunner::PostTask (0.33s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="1501.5,-975 1424.5,-975 1424.5,-931 1501.5,-931 1501.5,-975"/> | |
| <text text-anchor="middle" x="1463" y="-964.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1463" y="-955.6" font-family="Times,serif" font-size="8.00">TaskRunner</text> | |
| <text text-anchor="middle" x="1463" y="-946.6" font-family="Times,serif" font-size="8.00">PostTask</text> | |
| <text text-anchor="middle" x="1463" y="-937.6" font-family="Times,serif" font-size="8.00">0 of 0.33s (3.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N4 --> | |
| <g id="edge52" class="edge"><title>N16->N4</title> | |
| <g id="a_edge52"><a xlink:title="base::TaskRunner::PostTask ... <unknown> (0.15s)"> | |
| <path fill="none" stroke="#b2ada3" stroke-dasharray="1,5" d="M1452.62,-975.099C1435.3,-1010.24 1402.17,-1077.13 1400,-1079 1380.5,-1095.77 1361.65,-1077.4 1345,-1097 1309.84,-1138.39 1294.81,-1531.69 1270,-1580 1218.89,-1679.51 1106.68,-1748.34 1025.76,-1787.27"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="1024.08,-1784.19 1016.55,-1791.64 1027.08,-1790.52 1024.08,-1784.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge52-label"><a xlink:title="base::TaskRunner::PostTask ... <unknown> (0.15s)"> | |
| <text text-anchor="middle" x="1317" y="-1400.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N12 --> | |
| <g id="edge71" class="edge"><title>N16->N12</title> | |
| <g id="a_edge71"><a xlink:title="base::TaskRunner::PostTask -> syscall (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M1424.25,-934.173C1421.15,-933.016 1418.04,-931.94 1415,-931 1373.94,-918.307 1361.08,-925.632 1320,-913 1282.73,-901.537 1242.44,-883.998 1211.75,-869.471"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="1213.08,-866.227 1202.55,-865.07 1210.06,-872.542 1213.08,-866.227"/> | |
| </a> | |
| </g> | |
| <g id="a_edge71-label"><a xlink:title="base::TaskRunner::PostTask -> syscall (0.06s)"> | |
| <text text-anchor="middle" x="1337" y="-901.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node22" class="node"><title>N22</title> | |
| <g id="a_node22"><a xlink:title="__GI___pthread_mutex_lock (0.19s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="1873.5,-185 1678.5,-185 1678.5,-143 1873.5,-143 1873.5,-185"/> | |
| <text text-anchor="middle" x="1776" y="-169" font-family="Times,serif" font-size="15.00">__GI___pthread_mutex_lock</text> | |
| <text text-anchor="middle" x="1776" y="-152" font-family="Times,serif" font-size="15.00">0.19s (2.17%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N22 --> | |
| <g id="edge70" class="edge"><title>N16->N22</title> | |
| <g id="a_edge70"><a xlink:title="base::TaskRunner::PostTask ... __GI___pthread_mutex_lock (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M1477.66,-930.814C1540.27,-839.876 1783.56,-481.335 1819,-351 1834.44,-294.226 1833.07,-272.688 1809,-219 1805.18,-210.477 1800.26,-201.66 1795.39,-193.684"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="1798.27,-191.688 1789.97,-185.097 1792.35,-195.423 1798.27,-191.688"/> | |
| </a> | |
| </g> | |
| <g id="a_edge70-label"><a xlink:title="base::TaskRunner::PostTask ... __GI___pthread_mutex_lock (0.06s)"> | |
| <text text-anchor="middle" x="1742" y="-578.3" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N29 --> | |
| <g id="edge116" class="edge"><title>N16->N29</title> | |
| <g id="a_edge116"><a xlink:title="base::TaskRunner::PostTask ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1468.19,-930.752C1480.72,-878.26 1512.36,-738.068 1523,-619 1525.93,-586.242 1523.37,-577.887 1523,-545 1522.11,-466.763 1523.99,-447.083 1519,-369 1518.2,-356.405 1516.81,-342.514 1515.49,-330.699"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1518.93,-330.058 1514.3,-320.53 1511.98,-330.867 1518.93,-330.058"/> | |
| </a> | |
| </g> | |
| <g id="a_edge116-label"><a xlink:title="base::TaskRunner::PostTask ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1539" y="-640.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N6 --> | |
| <g id="edge35" class="edge"><title>N17->N6</title> | |
| <g id="a_edge35"><a xlink:title="base::MessagePumpLibevent::Run -> base::MessageLoop::DoWork (0.35s)"> | |
| <path fill="none" stroke="#b2a48e" d="M1043.17,-3549.76C1056.32,-3537.16 1073.37,-3520.83 1088.73,-3506.11"/> | |
| <polygon fill="#b2a48e" stroke="#b2a48e" points="1091.32,-3508.49 1096.12,-3499.04 1086.47,-3503.43 1091.32,-3508.49"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="base::MessagePumpLibevent::Run -> base::MessageLoop::DoWork (0.35s)"> | |
| <text text-anchor="middle" x="1092" y="-3520.8" font-family="Times,serif" font-size="14.00"> 0.35s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N11 --> | |
| <g id="edge26" class="edge"><title>N17->N11</title> | |
| <g id="a_edge26"><a xlink:title="base::MessagePumpLibevent::Run -> event_base_loop (1.16s)"> | |
| <path fill="none" stroke="#b2723c" d="M1017.17,-3549.61C1016.3,-3543.9 1015.48,-3537.73 1015,-3532 1014.12,-3521.56 1013.75,-3510.13 1013.64,-3499.87"/> | |
| <polygon fill="#b2723c" stroke="#b2723c" points="1017.14,-3499.69 1013.61,-3489.7 1010.14,-3499.71 1017.14,-3499.69"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="base::MessagePumpLibevent::Run -> event_base_loop (1.16s)"> | |
| <text text-anchor="middle" x="1032" y="-3520.8" font-family="Times,serif" font-size="14.00"> 1.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node18" class="node"><title>N18</title> | |
| <g id="a_node18"><a xlink:title="blink::ResourceLoader::Start (1.05s)"> | |
| <polygon fill="#ede5de" stroke="#b27947" points="916,-1539 836,-1539 836,-1495 916,-1495 916,-1539"/> | |
| <text text-anchor="middle" x="876" y="-1528.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="876" y="-1519.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="876" y="-1510.6" font-family="Times,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="876" y="-1501.6" font-family="Times,serif" font-size="8.00">0 of 1.05s (11.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43 --> | |
| <g id="node43" class="node"><title>N43</title> | |
| <g id="a_node43"><a xlink:title="content::WebURLLoaderImpl::Context::Start (0.63s)"> | |
| <polygon fill="#ede9e4" stroke="#b29572" points="824,-1431 738,-1431 738,-1378 824,-1378 824,-1431"/> | |
| <text text-anchor="middle" x="781" y="-1420.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="781" y="-1411.6" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="781" y="-1402.6" font-family="Times,serif" font-size="8.00">Context</text> | |
| <text text-anchor="middle" x="781" y="-1393.6" font-family="Times,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="781" y="-1384.6" font-family="Times,serif" font-size="8.00">0 of 0.63s (7.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N43 --> | |
| <g id="edge30" class="edge"><title>N18->N43</title> | |
| <g id="a_edge30"><a xlink:title="blink::ResourceLoader::Start ... content::WebURLLoaderImpl::Context::Start (0.63s)"> | |
| <path fill="none" stroke="#b29572" stroke-dasharray="1,5" d="M857.908,-1494.96C844.369,-1479.21 825.576,-1457.35 809.956,-1439.18"/> | |
| <polygon fill="#b29572" stroke="#b29572" points="812.206,-1436.43 803.033,-1431.13 806.898,-1440.99 812.206,-1436.43"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="blink::ResourceLoader::Start ... content::WebURLLoaderImpl::Context::Start (0.63s)"> | |
| <text text-anchor="middle" x="852" y="-1457.8" font-family="Times,serif" font-size="14.00"> 0.63s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46 --> | |
| <g id="node46" class="node"><title>N46</title> | |
| <g id="a_node46"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics (0.34s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="976,-1436 842,-1436 842,-1373 976,-1373 976,-1436"/> | |
| <text text-anchor="middle" x="909" y="-1424" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="909" y="-1413" font-family="Times,serif" font-size="10.00">RenderThreadImpl</text> | |
| <text text-anchor="middle" x="909" y="-1402" font-family="Times,serif" font-size="10.00">GetRendererMemoryMetrics</text> | |
| <text text-anchor="middle" x="909" y="-1391" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="909" y="-1380" font-family="Times,serif" font-size="10.00">of 0.34s (3.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N46 --> | |
| <g id="edge37" class="edge"><title>N18->N46</title> | |
| <g id="a_edge37"><a xlink:title="blink::ResourceLoader::Start ... content::RenderThreadImpl::GetRendererMemoryMetrics (0.34s)"> | |
| <path fill="none" stroke="#b2a58f" stroke-dasharray="1,5" d="M882.285,-1494.96C886.404,-1481.16 891.924,-1462.68 896.877,-1446.09"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="900.362,-1446.66 899.87,-1436.07 893.654,-1444.65 900.362,-1446.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="blink::ResourceLoader::Start ... content::RenderThreadImpl::GetRendererMemoryMetrics (0.34s)"> | |
| <text text-anchor="middle" x="912" y="-1457.8" font-family="Times,serif" font-size="14.00"> 0.34s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node19" class="node"><title>N19</title> | |
| <g id="a_node19"><a xlink:title="content::ThrottlingURLLoader::StartNow (0.51s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7e" points="872.5,-1310 783.5,-1310 783.5,-1266 872.5,-1266 872.5,-1310"/> | |
| <text text-anchor="middle" x="828" y="-1299.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="828" y="-1290.6" font-family="Times,serif" font-size="8.00">ThrottlingURLLoader</text> | |
| <text text-anchor="middle" x="828" y="-1281.6" font-family="Times,serif" font-size="8.00">StartNow</text> | |
| <text text-anchor="middle" x="828" y="-1272.6" font-family="Times,serif" font-size="8.00">0 of 0.51s (5.82%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N14 --> | |
| <g id="edge75" class="edge"><title>N19->N14</title> | |
| <g id="a_edge75"><a xlink:title="content::ThrottlingURLLoader::StartNow ... operator new (0.05s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M796.087,-1265.89C767.129,-1246.28 727.16,-1217.92 715,-1203 692.392,-1175.25 708.361,-1153.07 681,-1130 615.144,-1074.46 574.935,-1108.51 494,-1079 297.759,-1007.45 87,-1052.88 87,-844 87,-844 87,-844 87,-447 87,-405.739 105.431,-361.315 119.913,-332.778"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="123.108,-334.22 124.64,-323.737 116.905,-330.976 123.108,-334.22"/> | |
| </a> | |
| </g> | |
| <g id="a_edge75-label"><a xlink:title="content::ThrottlingURLLoader::StartNow ... operator new (0.05s)"> | |
| <text text-anchor="middle" x="107" y="-839.3" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N29 --> | |
| <g id="edge122" class="edge"><title>N19->N29</title> | |
| <g id="a_edge122"><a xlink:title="content::ThrottlingURLLoader::StartNow ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M858.896,-1265.83C865.964,-1261.54 873.583,-1257.33 881,-1254 938,-1228.41 978.541,-1255.76 1012,-1203 1029.37,-1175.6 1012.64,-1162.44 1012,-1130 1007.78,-914.543 993,-860.999 993,-645.5 993,-645.5 993,-645.5 993,-447 993,-410.729 988.94,-391.983 1017,-369 1047.93,-343.668 1156.34,-356.034 1196,-351 1264.33,-342.327 1340.66,-330.666 1401.19,-320.952"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1401.83,-324.394 1411.15,-319.349 1400.72,-317.483 1401.83,-324.394"/> | |
| </a> | |
| </g> | |
| <g id="a_edge122-label"><a xlink:title="content::ThrottlingURLLoader::StartNow ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1018" y="-839.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N39 --> | |
| <g id="edge121" class="edge"><title>N19->N39</title> | |
| <g id="a_edge121"><a xlink:title="content::ThrottlingURLLoader::StartNow ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M808.566,-1265.67C793.92,-1249.13 773.739,-1225.35 758,-1203 736.32,-1172.21 742.058,-1156.19 715,-1130 611.67,-1030 530.618,-1078.7 431,-975 336.804,-876.942 334.437,-701.082 338.682,-622.645"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="342.202,-622.437 339.317,-612.242 335.215,-622.011 342.202,-622.437"/> | |
| </a> | |
| </g> | |
| <g id="a_edge121-label"><a xlink:title="content::ThrottlingURLLoader::StartNow ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <text text-anchor="middle" x="448" y="-949.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57 --> | |
| <g id="node57" class="node"><title>N57</title> | |
| <g id="a_node57"><a xlink:title="content::mojom::URLLoaderFactoryProxy::CreateLoaderAndStart (0.16s)"> | |
| <polygon fill="#edecea" stroke="#b2ada2" points="1003,-1193 903,-1193 903,-1140 1003,-1140 1003,-1193"/> | |
| <text text-anchor="middle" x="953" y="-1182.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="953" y="-1173.6" font-family="Times,serif" font-size="8.00">mojom</text> | |
| <text text-anchor="middle" x="953" y="-1164.6" font-family="Times,serif" font-size="8.00">URLLoaderFactoryProxy</text> | |
| <text text-anchor="middle" x="953" y="-1155.6" font-family="Times,serif" font-size="8.00">CreateLoaderAndStart</text> | |
| <text text-anchor="middle" x="953" y="-1146.6" font-family="Times,serif" font-size="8.00">0 of 0.16s (1.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N57 --> | |
| <g id="edge50" class="edge"><title>N19->N57</title> | |
| <g id="a_edge50"><a xlink:title="content::ThrottlingURLLoader::StartNow -> content::mojom::URLLoaderFactoryProxy::CreateLoaderAndStart (0.16s)"> | |
| <path fill="none" stroke="#b2ada2" d="M854.733,-1265.85C865.623,-1256.93 878.172,-1246.25 889,-1236 900.622,-1225 912.756,-1212.35 923.295,-1200.93"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="926.144,-1203 930.311,-1193.26 920.979,-1198.28 926.144,-1203"/> | |
| </a> | |
| </g> | |
| <g id="a_edge50-label"><a xlink:title="content::ThrottlingURLLoader::StartNow -> content::mojom::URLLoaderFactoryProxy::CreateLoaderAndStart (0.16s)"> | |
| <text text-anchor="middle" x="921" y="-1224.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64 --> | |
| <g id="node64" class="node"><title>N64</title> | |
| <g id="a_node64"><a xlink:title="mojo::edk::Core::CreateMessagePipe (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="847,-1193 767,-1193 767,-1140 847,-1140 847,-1193"/> | |
| <text text-anchor="middle" x="807" y="-1182.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="807" y="-1173.6" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="807" y="-1164.6" font-family="Times,serif" font-size="8.00">Core</text> | |
| <text text-anchor="middle" x="807" y="-1155.6" font-family="Times,serif" font-size="8.00">CreateMessagePipe</text> | |
| <text text-anchor="middle" x="807" y="-1146.6" font-family="Times,serif" font-size="8.00">0 of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N64 --> | |
| <g id="edge58" class="edge"><title>N19->N64</title> | |
| <g id="a_edge58"><a xlink:title="content::ThrottlingURLLoader::StartNow -> mojo::edk::Core::CreateMessagePipe (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" d="M824.294,-1265.91C821.252,-1248.6 816.877,-1223.7 813.288,-1203.28"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="816.725,-1202.62 811.547,-1193.37 809.83,-1203.83 816.725,-1202.62"/> | |
| </a> | |
| </g> | |
| <g id="a_edge58-label"><a xlink:title="content::ThrottlingURLLoader::StartNow -> mojo::edk::Core::CreateMessagePipe (0.11s)"> | |
| <text text-anchor="middle" x="836" y="-1224.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67 --> | |
| <g id="node67" class="node"><title>N67</title> | |
| <g id="a_node67"><a xlink:title="base::internal::LockImpl::Lock (0.05s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="1181.5,-201 1098.5,-201 1098.5,-127 1181.5,-127 1181.5,-201"/> | |
| <text text-anchor="middle" x="1140" y="-189" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="1140" y="-178" font-family="Times,serif" font-size="10.00">internal</text> | |
| <text text-anchor="middle" x="1140" y="-167" font-family="Times,serif" font-size="10.00">LockImpl</text> | |
| <text text-anchor="middle" x="1140" y="-156" font-family="Times,serif" font-size="10.00">Lock</text> | |
| <text text-anchor="middle" x="1140" y="-145" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="1140" y="-134" font-family="Times,serif" font-size="10.00">of 0.05s (0.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N67 --> | |
| <g id="edge123" class="edge"><title>N19->N67</title> | |
| <g id="a_edge123"><a xlink:title="content::ThrottlingURLLoader::StartNow ... base::internal::LockImpl::Lock (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M843.359,-1265.74C848.793,-1256.98 854.24,-1246.44 857,-1236 858.986,-1228.49 866.643,-1323.17 856,-1130 853.808,-1090.21 800.212,-806.361 822,-773 832.882,-756.338 850.522,-770.503 863,-755 894.124,-716.33 885,-695.139 885,-645.5 885,-645.5 885,-645.5 885,-300.5 885,-209.287 1013.8,-179.284 1088.33,-169.558"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1088.96,-173.006 1098.46,-168.316 1088.11,-166.058 1088.96,-173.006"/> | |
| </a> | |
| </g> | |
| <g id="a_edge123-label"><a xlink:title="content::ThrottlingURLLoader::StartNow ... base::internal::LockImpl::Lock (0.01s)"> | |
| <text text-anchor="middle" x="839" y="-776.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N52 --> | |
| <g id="edge24" class="edge"><title>N20->N52</title> | |
| <g id="a_edge24"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::ModuleMap::FetchSingleModuleScript (1.30s)"> | |
| <path fill="none" stroke="#b2672e" d="M1186.16,-3061.42C1151.6,-3038.68 1103,-3002.73 1103,-2980.5 1103,-2980.5 1103,-2980.5 1103,-1825.5 1103,-1796.51 1088.13,-1766.89 1074.44,-1745.79"/> | |
| <polygon fill="#b2672e" stroke="#b2672e" points="1077.2,-1743.61 1068.7,-1737.29 1071.4,-1747.53 1077.2,-1743.61"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::ModuleMap::FetchSingleModuleScript (1.30s)"> | |
| <text text-anchor="middle" x="1120" y="-2438.3" font-family="Times,serif" font-size="14.00"> 1.30s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56 --> | |
| <g id="node56" class="node"><title>N56</title> | |
| <g id="a_node56"><a xlink:title="blink::Modulator::ResolveModuleSpecifier (0.29s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="1303,-2164 1207,-2164 1207,-2120 1303,-2120 1303,-2164"/> | |
| <text text-anchor="middle" x="1255" y="-2153.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1255" y="-2144.6" font-family="Times,serif" font-size="8.00">Modulator</text> | |
| <text text-anchor="middle" x="1255" y="-2135.6" font-family="Times,serif" font-size="8.00">ResolveModuleSpecifier</text> | |
| <text text-anchor="middle" x="1255" y="-2126.6" font-family="Times,serif" font-size="8.00">0 of 0.29s (3.31%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N56 --> | |
| <g id="edge49" class="edge"><title>N20->N56</title> | |
| <g id="a_edge49"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants ... blink::Modulator::ResolveModuleSpecifier (0.16s)"> | |
| <path fill="none" stroke="#b2ada2" stroke-dasharray="1,5" d="M1242.02,-3061.2C1259.5,-3041.94 1281,-3011.86 1281,-2980.5 1281,-2980.5 1281,-2980.5 1281,-2251 1281,-2224.36 1273.43,-2195.03 1266.46,-2173.66"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="1269.76,-2172.49 1263.23,-2164.15 1263.13,-2174.75 1269.76,-2172.49"/> | |
| </a> | |
| </g> | |
| <g id="a_edge49-label"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants ... blink::Modulator::ResolveModuleSpecifier (0.16s)"> | |
| <text text-anchor="middle" x="1298" y="-2589.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N2 --> | |
| <g id="edge16" class="edge"><title>N21->N2</title> | |
| <g id="a_edge16"><a xlink:title="base::(anonymous namespace)::ThreadFunc ... base::RunLoop::Run (1.60s)"> | |
| <path fill="none" stroke="#b2500f" stroke-dasharray="1,5" d="M1209.95,-3739.9C1195.04,-3726.82 1175.72,-3709.87 1159.59,-3695.72"/> | |
| <polygon fill="#b2500f" stroke="#b2500f" points="1161.78,-3692.98 1151.96,-3689.02 1157.17,-3698.25 1161.78,-3692.98"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="base::(anonymous namespace)::ThreadFunc ... base::RunLoop::Run (1.60s)"> | |
| <text text-anchor="middle" x="1205" y="-3710.8" font-family="Times,serif" font-size="14.00"> 1.60s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N13 --> | |
| <g id="edge23" class="edge"><title>N24->N13</title> | |
| <g id="a_edge23"><a xlink:title="mojo::Connector::ReadSingleMessage ... content::mojom::URLLoaderClientStubDispatch::Accept (1.33s)"> | |
| <path fill="none" stroke="#b2652a" stroke-dasharray="1,5" d="M857,-2957.34C857,-2944.6 857,-2927.86 857,-2912.2"/> | |
| <polygon fill="#b2652a" stroke="#b2652a" points="860.5,-2912.11 857,-2902.11 853.5,-2912.11 860.5,-2912.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="mojo::Connector::ReadSingleMessage ... content::mojom::URLLoaderClientStubDispatch::Accept (1.33s)"> | |
| <text text-anchor="middle" x="874" y="-2923.8" font-family="Times,serif" font-size="14.00"> 1.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N39 --> | |
| <g id="edge103" class="edge"><title>N24->N39</title> | |
| <g id="a_edge103"><a xlink:title="mojo::Connector::ReadSingleMessage ... (anonymous namespace)::do_free_with_callback (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M821.788,-2957.37C796.638,-2942.18 762.074,-2921.09 732,-2902 646.658,-2847.83 609.91,-2851.87 542,-2777 503.534,-2734.59 504.294,-2715.74 482,-2663 341.361,-2330.31 333.168,-2650.5 199,-1547 162.386,-1245.86 252.9,-710.009 269,-670 276.39,-651.634 289.213,-634.292 302.07,-619.995"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="304.915,-622.076 309.182,-612.379 299.799,-617.299 304.915,-622.076"/> | |
| </a> | |
| </g> | |
| <g id="a_edge103-label"><a xlink:title="mojo::Connector::ReadSingleMessage ... (anonymous namespace)::do_free_with_callback (0.02s)"> | |
| <text text-anchor="middle" x="244" y="-1758.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76 --> | |
| <g id="node76" class="node"><title>N76</title> | |
| <g id="a_node76"><a xlink:title="mojo::ReadMessage (0.16s)"> | |
| <polygon fill="#edecea" stroke="#b2ada2" points="1505.5,-1184.5 1428.5,-1184.5 1428.5,-1148.5 1505.5,-1148.5 1505.5,-1184.5"/> | |
| <text text-anchor="middle" x="1467" y="-1173.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1467" y="-1164.6" font-family="Times,serif" font-size="8.00">ReadMessage</text> | |
| <text text-anchor="middle" x="1467" y="-1155.6" font-family="Times,serif" font-size="8.00">0 of 0.16s (1.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N76 --> | |
| <g id="edge51" class="edge"><title>N24->N76</title> | |
| <g id="a_edge51"><a xlink:title="mojo::Connector::ReadSingleMessage -> mojo::ReadMessage (0.16s)"> | |
| <path fill="none" stroke="#b2ada2" d="M897.681,-2963.71C936.466,-2946.67 989,-2914.63 989,-2866 989,-2866 989,-2866 989,-2592.5 989,-2549.06 1053.56,-2453.68 1081,-2420 1186.86,-2290.08 1283.02,-2321.64 1371,-2179 1455.38,-2042.2 1470,-1623.23 1470,-1462.5 1470,-1462.5 1470,-1462.5 1470,-1287 1470,-1255.33 1468.93,-1218.94 1468.07,-1194.73"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="1471.56,-1194.38 1467.7,-1184.52 1464.57,-1194.64 1471.56,-1194.38"/> | |
| </a> | |
| </g> | |
| <g id="a_edge51-label"><a xlink:title="mojo::Connector::ReadSingleMessage -> mojo::ReadMessage (0.16s)"> | |
| <text text-anchor="middle" x="1420" y="-2138.3" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node25" class="node"><title>N25</title> | |
| <g id="a_node25"><a xlink:title="blink::ModuleScript::Create (1.74s)"> | |
| <polygon fill="#edded5" stroke="#b24501" points="719,-2274 639,-2274 639,-2230 719,-2230 719,-2274"/> | |
| <text text-anchor="middle" x="679" y="-2263.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="679" y="-2254.6" font-family="Times,serif" font-size="8.00">ModuleScript</text> | |
| <text text-anchor="middle" x="679" y="-2245.6" font-family="Times,serif" font-size="8.00">Create</text> | |
| <text text-anchor="middle" x="679" y="-2236.6" font-family="Times,serif" font-size="8.00">0 of 1.74s (19.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48 --> | |
| <g id="node48" class="node"><title>N48</title> | |
| <g id="a_node48"><a xlink:title="WTF::HashTable::insert (0.09s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="471,-1203 375,-1203 375,-1130 471,-1130 471,-1203"/> | |
| <text text-anchor="middle" x="423" y="-1189.4" font-family="Times,serif" font-size="12.00">WTF</text> | |
| <text text-anchor="middle" x="423" y="-1176.4" font-family="Times,serif" font-size="12.00">HashTable</text> | |
| <text text-anchor="middle" x="423" y="-1163.4" font-family="Times,serif" font-size="12.00">insert</text> | |
| <text text-anchor="middle" x="423" y="-1150.4" font-family="Times,serif" font-size="12.00">0.06s (0.68%)</text> | |
| <text text-anchor="middle" x="423" y="-1137.4" font-family="Times,serif" font-size="12.00">of 0.09s (1.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N48 --> | |
| <g id="edge82" class="edge"><title>N25->N48</title> | |
| <g id="a_edge82"><a xlink:title="blink::ModuleScript::Create ... WTF::HashTable::insert (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M646.341,-2229.98C573.878,-2180.48 406,-2048.83 406,-1891.5 406,-1891.5 406,-1891.5 406,-1287 406,-1262.49 409.549,-1235.43 413.404,-1213.26"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="416.901,-1213.6 415.246,-1203.13 410.014,-1212.34 416.901,-1213.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge82-label"><a xlink:title="blink::ModuleScript::Create ... WTF::HashTable::insert (0.03s)"> | |
| <text text-anchor="middle" x="423" y="-1663.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N56 --> | |
| <g id="edge55" class="edge"><title>N25->N56</title> | |
| <g id="a_edge55"><a xlink:title="blink::ModuleScript::Create -> blink::Modulator::ResolveModuleSpecifier (0.13s)"> | |
| <path fill="none" stroke="#b2aea5" d="M719.057,-2243.68C789.605,-2230.78 940.614,-2203.05 1068,-2179 1111.21,-2170.84 1159.99,-2161.44 1196.9,-2154.3"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="1197.82,-2157.68 1206.98,-2152.34 1196.49,-2150.81 1197.82,-2157.68"/> | |
| </a> | |
| </g> | |
| <g id="a_edge55-label"><a xlink:title="blink::ModuleScript::Create -> blink::Modulator::ResolveModuleSpecifier (0.13s)"> | |
| <text text-anchor="middle" x="989" y="-2200.8" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71 --> | |
| <g id="node71" class="node"><title>N71</title> | |
| <g id="a_node71"><a xlink:title="v8::ScriptCompiler::CompileModule (1.55s)"> | |
| <polygon fill="#ede0d8" stroke="#b25414" points="723.5,-2173.5 634.5,-2173.5 634.5,-2110.5 723.5,-2110.5 723.5,-2173.5"/> | |
| <text text-anchor="middle" x="679" y="-2161.5" font-family="Times,serif" font-size="10.00">v8</text> | |
| <text text-anchor="middle" x="679" y="-2150.5" font-family="Times,serif" font-size="10.00">ScriptCompiler</text> | |
| <text text-anchor="middle" x="679" y="-2139.5" font-family="Times,serif" font-size="10.00">CompileModule</text> | |
| <text text-anchor="middle" x="679" y="-2128.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="679" y="-2117.5" font-family="Times,serif" font-size="10.00">of 1.55s (17.69%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N71 --> | |
| <g id="edge19" class="edge"><title>N25->N71</title> | |
| <g id="a_edge19"><a xlink:title="blink::ModuleScript::Create ... v8::ScriptCompiler::CompileModule (1.52s)"> | |
| <path fill="none" stroke="#b25617" stroke-dasharray="1,5" d="M679,-2229.92C679,-2216.83 679,-2199.56 679,-2183.87"/> | |
| <polygon fill="#b25617" stroke="#b25617" points="682.5,-2183.84 679,-2173.84 675.5,-2183.84 682.5,-2183.84"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-label"><a xlink:title="blink::ModuleScript::Create ... v8::ScriptCompiler::CompileModule (1.52s)"> | |
| <text text-anchor="middle" x="696" y="-2200.8" font-family="Times,serif" font-size="14.00"> 1.52s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N6 --> | |
| <g id="edge6" class="edge"><title>N26->N6</title> | |
| <g id="a_edge6"><a xlink:title="base::MessagePumpDefault::Run -> base::MessageLoop::DoWork (5.54s)"> | |
| <path fill="none" stroke="#b21600" stroke-width="4" d="M1128,-3549.76C1128,-3538.08 1128,-3523.19 1128,-3509.35"/> | |
| <polygon fill="#b21600" stroke="#b21600" stroke-width="4" points="1131.5,-3509.04 1128,-3499.04 1124.5,-3509.04 1131.5,-3509.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="base::MessagePumpDefault::Run -> base::MessageLoop::DoWork (5.54s)"> | |
| <text text-anchor="middle" x="1145" y="-3520.8" font-family="Times,serif" font-size="14.00"> 5.54s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N29 --> | |
| <g id="edge115" class="edge"><title>N26->N29</title> | |
| <g id="a_edge115"><a xlink:title="base::MessagePumpDefault::Run -> __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1171.77,-3567.84C1306.18,-3557.55 1704,-3522.52 1704,-3468.5 1704,-3468.5 1704,-3468.5 1704,-904.5 1704,-679.974 1734.69,-610.746 1652,-402 1637.76,-366.044 1602.01,-340.982 1570.21,-325.004"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1571.46,-321.721 1560.93,-320.536 1568.42,-328.028 1571.46,-321.721"/> | |
| </a> | |
| </g> | |
| <g id="a_edge115-label"><a xlink:title="base::MessagePumpDefault::Run -> __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1721" y="-1981.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N5 --> | |
| <g id="edge131" class="edge"><title>N27->N5</title> | |
| <g id="a_edge131"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... mojo::SimpleWatcher::OnHandleReady (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M966.668,-3212C922.938,-3206.34 855.101,-3190.03 823,-3143 816.649,-3133.69 819.828,-3123.15 826.289,-3113.6"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="829.214,-3115.55 832.654,-3105.52 823.716,-3111.21 829.214,-3115.55"/> | |
| </a> | |
| </g> | |
| <g id="a_edge131-label"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... mojo::SimpleWatcher::OnHandleReady (0.01s)"> | |
| <text text-anchor="middle" x="840" y="-3131.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N16 --> | |
| <g id="edge56" class="edge"><title>N27->N16</title> | |
| <g id="a_edge56"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... base::TaskRunner::PostTask (0.13s)"> | |
| <path fill="none" stroke="#b2aea5" stroke-dasharray="1,5" d="M1025.06,-3189.46C1033.42,-3179.29 1044.14,-3168.29 1056,-3161 1103.12,-3132.03 1122.14,-3140.6 1176,-3128 1216.99,-3118.41 1238.48,-3139 1269,-3110 1346.24,-3036.6 1480.02,-2283.85 1499,-2179 1543.47,-1933.32 1564,-1870.68 1564,-1621 1564,-1621 1564,-1621 1564,-1403.5 1564,-1326.08 1572,-1306.92 1572,-1229.5 1572,-1229.5 1572,-1229.5 1572,-1051.5 1572,-1016.3 1540.02,-990.624 1510.71,-974.486"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="1512.22,-971.325 1501.74,-969.784 1508.97,-977.526 1512.22,-971.325"/> | |
| </a> | |
| </g> | |
| <g id="a_edge56-label"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... base::TaskRunner::PostTask (0.13s)"> | |
| <text text-anchor="middle" x="1530" y="-2138.3" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59 --> | |
| <g id="node59" class="node"><title>N59</title> | |
| <g id="a_node59"><a xlink:title="mojo::edk::NodeController::OnEventMessage (0.33s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="216.5,-869.5 139.5,-869.5 139.5,-816.5 216.5,-816.5 216.5,-869.5"/> | |
| <text text-anchor="middle" x="178" y="-859.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="178" y="-850.1" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="178" y="-841.1" font-family="Times,serif" font-size="8.00">NodeController</text> | |
| <text text-anchor="middle" x="178" y="-832.1" font-family="Times,serif" font-size="8.00">OnEventMessage</text> | |
| <text text-anchor="middle" x="178" y="-823.1" font-family="Times,serif" font-size="8.00">0 of 0.33s (3.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N59 --> | |
| <g id="edge38" class="edge"><title>N27->N59</title> | |
| <g id="a_edge38"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage -> mojo::edk::NodeController::OnEventMessage (0.33s)"> | |
| <path fill="none" stroke="#b2a590" d="M966.895,-3213.43C793.132,-3206.12 114,-3171.95 114,-3084.5 114,-3084.5 114,-3084.5 114,-952 114,-924.416 129.643,-897.709 145.461,-877.754"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="148.28,-879.838 151.969,-869.906 142.891,-875.37 148.28,-879.838"/> | |
| </a> | |
| </g> | |
| <g id="a_edge38-label"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage -> mojo::edk::NodeController::OnEventMessage (0.33s)"> | |
| <text text-anchor="middle" x="131" y="-2075.8" font-family="Times,serif" font-size="14.00"> 0.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30 --> | |
| <g id="node30" class="node"><title>N30</title> | |
| <g id="a_node30"><a xlink:title="mojo::edk::Core::Close (0.28s)"> | |
| <polygon fill="#edebe9" stroke="#b2a895" points="1059.5,-2179 976.5,-2179 976.5,-2105 1059.5,-2105 1059.5,-2179"/> | |
| <text text-anchor="middle" x="1018" y="-2167" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="1018" y="-2156" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="1018" y="-2145" font-family="Times,serif" font-size="10.00">Core</text> | |
| <text text-anchor="middle" x="1018" y="-2134" font-family="Times,serif" font-size="10.00">Close</text> | |
| <text text-anchor="middle" x="1018" y="-2123" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1018" y="-2112" font-family="Times,serif" font-size="10.00">of 0.28s (3.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N29 --> | |
| <g id="edge128" class="edge"><title>N30->N29</title> | |
| <g id="a_edge128"><a xlink:title="mojo::edk::Core::Close ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1047.87,-2104.63C1086.09,-2057.7 1153.8,-1973.14 1208,-1898 1247.95,-1842.62 1268.94,-1833.91 1293,-1770 1345.77,-1629.82 1327.98,-1585.45 1338,-1436 1348.93,-1273.06 1282.64,-1239.22 1251,-1079 1245.09,-1049.09 1243.41,-828.654 1223,-806 1196.86,-776.988 1172.39,-804.497 1137,-788 1115.48,-777.971 1105.38,-776.351 1095,-755 1054.14,-670.941 1061.38,-627.121 1106,-545 1123.37,-513.042 1148.14,-523.068 1170,-494 1196.59,-458.644 1175.56,-432.081 1208,-402 1260.76,-353.075 1337.99,-328.186 1401.4,-315.536"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1402.29,-318.929 1411.45,-313.609 1400.97,-312.054 1402.29,-318.929"/> | |
| </a> | |
| </g> | |
| <g id="a_edge128-label"><a xlink:title="mojo::edk::Core::Close ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1320" y="-1224.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50 --> | |
| <g id="node50" class="node"><title>N50</title> | |
| <g id="a_node50"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock (0.19s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="1075,-2011.5 961,-2011.5 961,-1958.5 1075,-1958.5 1075,-2011.5"/> | |
| <text text-anchor="middle" x="1018" y="-2001.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1018" y="-1992.1" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="1018" y="-1983.1" font-family="Times,serif" font-size="8.00">DataPipeConsumerDispatcher</text> | |
| <text text-anchor="middle" x="1018" y="-1974.1" font-family="Times,serif" font-size="8.00">CloseNoLock</text> | |
| <text text-anchor="middle" x="1018" y="-1965.1" font-family="Times,serif" font-size="8.00">0 of 0.19s (2.17%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N50 --> | |
| <g id="edge47" class="edge"><title>N30->N50</title> | |
| <g id="a_edge47"><a xlink:title="mojo::edk::Core::Close ... mojo::edk::DataPipeConsumerDispatcher::CloseNoLock (0.19s)"> | |
| <path fill="none" stroke="#b2ac9f" stroke-dasharray="1,5" d="M1018,-2104.66C1018,-2079.76 1018,-2046.88 1018,-2022.05"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="1021.5,-2021.94 1018,-2011.94 1014.5,-2021.94 1021.5,-2021.94"/> | |
| </a> | |
| </g> | |
| <g id="a_edge47-label"><a xlink:title="mojo::edk::Core::Close ... mojo::edk::DataPipeConsumerDispatcher::CloseNoLock (0.19s)"> | |
| <text text-anchor="middle" x="1035" y="-2075.8" font-family="Times,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node31" class="node"><title>N31</title> | |
| <g id="a_node31"><a xlink:title="(anonymous namespace)::do_malloc (0.28s)"> | |
| <polygon fill="#edebe9" stroke="#b2a895" points="220.5,-76 53.5,-76 53.5,-0 220.5,-0 220.5,-76"/> | |
| <text text-anchor="middle" x="137" y="-60" font-family="Times,serif" font-size="15.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="137" y="-43" font-family="Times,serif" font-size="15.00">do_malloc</text> | |
| <text text-anchor="middle" x="137" y="-26" font-family="Times,serif" font-size="15.00">0.24s (2.74%)</text> | |
| <text text-anchor="middle" x="137" y="-9" font-family="Times,serif" font-size="15.00">of 0.28s (3.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node32" class="node"><title>N32</title> | |
| <g id="a_node32"><a xlink:title="mojo::edk::ports::Node::AcceptEvent (0.27s)"> | |
| <polygon fill="#edebe9" stroke="#b2a896" points="1250.5,-755 1167.5,-755 1167.5,-670 1250.5,-670 1250.5,-755"/> | |
| <text text-anchor="middle" x="1209" y="-743" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="1209" y="-732" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="1209" y="-721" font-family="Times,serif" font-size="10.00">ports</text> | |
| <text text-anchor="middle" x="1209" y="-710" font-family="Times,serif" font-size="10.00">Node</text> | |
| <text text-anchor="middle" x="1209" y="-699" font-family="Times,serif" font-size="10.00">AcceptEvent</text> | |
| <text text-anchor="middle" x="1209" y="-688" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1209" y="-677" font-family="Times,serif" font-size="10.00">of 0.27s (3.08%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44 --> | |
| <g id="node44" class="node"><title>N44</title> | |
| <g id="a_node44"><a xlink:title="mojo::edk::NodeController::ForwardEvent (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="1386.5,-869.5 1309.5,-869.5 1309.5,-816.5 1386.5,-816.5 1386.5,-869.5"/> | |
| <text text-anchor="middle" x="1348" y="-859.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1348" y="-850.1" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="1348" y="-841.1" font-family="Times,serif" font-size="8.00">NodeController</text> | |
| <text text-anchor="middle" x="1348" y="-832.1" font-family="Times,serif" font-size="8.00">ForwardEvent</text> | |
| <text text-anchor="middle" x="1348" y="-823.1" font-family="Times,serif" font-size="8.00">0 of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N44 --> | |
| <g id="edge69" class="edge"><title>N32->N44</title> | |
| <g id="a_edge69"><a xlink:title="mojo::edk::ports::Node::AcceptEvent ... mojo::edk::NodeController::ForwardEvent (0.07s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1218.6,-755.291C1223.09,-767.181 1229.61,-779.261 1239,-788 1258.14,-805.81 1271.5,-794.539 1295,-806 1298.14,-807.534 1301.32,-809.234 1304.46,-811.037"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1302.84,-814.148 1313.21,-816.336 1306.47,-808.161 1302.84,-814.148"/> | |
| </a> | |
| </g> | |
| <g id="a_edge69-label"><a xlink:title="mojo::edk::ports::Node::AcceptEvent ... mojo::edk::NodeController::ForwardEvent (0.07s)"> | |
| <text text-anchor="middle" x="1256" y="-776.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53 --> | |
| <g id="node53" class="node"><title>N53</title> | |
| <g id="a_node53"><a xlink:title="mojo::edk::NodeController::PortStatusChanged (0.09s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1312.5,-485 1217.5,-485 1217.5,-411 1312.5,-411 1312.5,-485"/> | |
| <text text-anchor="middle" x="1265" y="-473" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="1265" y="-462" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="1265" y="-451" font-family="Times,serif" font-size="10.00">NodeController</text> | |
| <text text-anchor="middle" x="1265" y="-440" font-family="Times,serif" font-size="10.00">PortStatusChanged</text> | |
| <text text-anchor="middle" x="1265" y="-429" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1265" y="-418" font-family="Times,serif" font-size="10.00">of 0.09s (1.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N53 --> | |
| <g id="edge89" class="edge"><title>N32->N53</title> | |
| <g id="a_edge89"><a xlink:title="mojo::edk::ports::Node::AcceptEvent ... mojo::edk::NodeController::PortStatusChanged (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M1191.15,-669.995C1175.81,-627.481 1160.16,-560.874 1188,-512 1191.27,-506.259 1199.46,-498.324 1209.34,-490.018"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="1211.64,-492.66 1217.17,-483.624 1207.21,-487.237 1211.64,-492.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge89-label"><a xlink:title="mojo::edk::ports::Node::AcceptEvent ... mojo::edk::NodeController::PortStatusChanged (0.03s)"> | |
| <text text-anchor="middle" x="1194" y="-578.3" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66 --> | |
| <g id="node66" class="node"><title>N66</title> | |
| <g id="a_node66"><a xlink:title="mojo::edk::ports::Node::OnUserMessage (0.12s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="1303.5,-613 1226.5,-613 1226.5,-551 1303.5,-551 1303.5,-613"/> | |
| <text text-anchor="middle" x="1265" y="-602.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1265" y="-593.6" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="1265" y="-584.6" font-family="Times,serif" font-size="8.00">ports</text> | |
| <text text-anchor="middle" x="1265" y="-575.6" font-family="Times,serif" font-size="8.00">Node</text> | |
| <text text-anchor="middle" x="1265" y="-566.6" font-family="Times,serif" font-size="8.00">OnUserMessage</text> | |
| <text text-anchor="middle" x="1265" y="-557.6" font-family="Times,serif" font-size="8.00">0 of 0.12s (1.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N66 --> | |
| <g id="edge57" class="edge"><title>N32->N66</title> | |
| <g id="a_edge57"><a xlink:title="mojo::edk::ports::Node::AcceptEvent -> mojo::edk::ports::Node::OnUserMessage (0.12s)"> | |
| <path fill="none" stroke="#b2afa6" d="M1227.18,-669.78C1233.78,-654.631 1241.22,-637.568 1247.74,-622.607"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="1251.09,-623.686 1251.87,-613.12 1244.67,-620.889 1251.09,-623.686"/> | |
| </a> | |
| </g> | |
| <g id="a_edge57-label"><a xlink:title="mojo::edk::ports::Node::AcceptEvent -> mojo::edk::ports::Node::OnUserMessage (0.12s)"> | |
| <text text-anchor="middle" x="1258" y="-640.8" font-family="Times,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node33" class="node"><title>N33</title> | |
| <g id="a_node33"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage (0.35s)"> | |
| <polygon fill="#edebe8" stroke="#b2a48e" points="1391.5,-1079 1260.5,-1079 1260.5,-1026 1391.5,-1026 1391.5,-1079"/> | |
| <text text-anchor="middle" x="1326" y="-1068.6" font-family="Times,serif" font-size="8.00">IPC</text> | |
| <text text-anchor="middle" x="1326" y="-1059.6" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1326" y="-1050.6" font-family="Times,serif" font-size="8.00">ChannelAssociatedGroupController</text> | |
| <text text-anchor="middle" x="1326" y="-1041.6" font-family="Times,serif" font-size="8.00">SendMessage</text> | |
| <text text-anchor="middle" x="1326" y="-1032.6" font-family="Times,serif" font-size="8.00">0 of 0.35s (4.00%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N12 --> | |
| <g id="edge97" class="edge"><title>N33->N12</title> | |
| <g id="a_edge97"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage -> syscall (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1305.72,-1025.96C1281.51,-995.496 1239.82,-943.021 1204,-898 1197.51,-889.841 1190.46,-880.991 1183.99,-872.861"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1186.72,-870.667 1177.75,-865.025 1181.24,-875.028 1186.72,-870.667"/> | |
| </a> | |
| </g> | |
| <g id="a_edge97-label"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage -> syscall (0.02s)"> | |
| <text text-anchor="middle" x="1283" y="-949.3" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N16 --> | |
| <g id="edge65" class="edge"><title>N33->N16</title> | |
| <g id="a_edge65"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage -> base::TaskRunner::PostTask (0.07s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M1344.76,-1025.98C1353.87,-1014.82 1365.55,-1002.22 1378,-993 1381.55,-990.372 1397.45,-982.928 1414.55,-975.239"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1416.4,-978.246 1424.11,-970.972 1413.55,-971.854 1416.4,-978.246"/> | |
| </a> | |
| </g> | |
| <g id="a_edge65-label"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage -> base::TaskRunner::PostTask (0.07s)"> | |
| <text text-anchor="middle" x="1395" y="-996.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42 --> | |
| <g id="node42" class="node"><title>N42</title> | |
| <g id="a_node42"><a xlink:title="mojo::Connector::Accept (0.26s)"> | |
| <polygon fill="#edebe9" stroke="#b2a998" points="1406.5,-975 1329.5,-975 1329.5,-931 1406.5,-931 1406.5,-975"/> | |
| <text text-anchor="middle" x="1368" y="-964.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1368" y="-955.6" font-family="Times,serif" font-size="8.00">Connector</text> | |
| <text text-anchor="middle" x="1368" y="-946.6" font-family="Times,serif" font-size="8.00">Accept</text> | |
| <text text-anchor="middle" x="1368" y="-937.6" font-family="Times,serif" font-size="8.00">0 of 0.26s (2.97%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N42 --> | |
| <g id="edge45" class="edge"><title>N33->N42</title> | |
| <g id="a_edge45"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage -> mojo::Connector::Accept (0.26s)"> | |
| <path fill="none" stroke="#b2a998" d="M1318.28,-1025.73C1316.48,-1015.16 1316.28,-1003.06 1321,-993 1322.73,-989.326 1324.99,-985.879 1327.58,-982.673"/> | |
| <polygon fill="#b2a998" stroke="#b2a998" points="1330.31,-984.886 1334.62,-975.207 1325.21,-980.085 1330.31,-984.886"/> | |
| </a> | |
| </g> | |
| <g id="a_edge45-label"><a xlink:title="IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage -> mojo::Connector::Accept (0.26s)"> | |
| <text text-anchor="middle" x="1338" y="-996.8" font-family="Times,serif" font-size="14.00"> 0.26s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N30 --> | |
| <g id="edge73" class="edge"><title>N34->N30</title> | |
| <g id="a_edge73"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest ... mojo::edk::Core::Close (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M696.308,-2514.59C733.653,-2459.51 825.891,-2327.81 918,-2230 933.456,-2213.59 951.728,-2197 968.396,-2182.77"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="971.049,-2185.11 976.431,-2175.98 966.532,-2179.76 971.049,-2185.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge73-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest ... mojo::edk::Core::Close (0.06s)"> | |
| <text text-anchor="middle" x="853" y="-2343.3" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72 --> | |
| <g id="node72" class="node"><title>N72</title> | |
| <g id="a_node72"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish (2.01s)"> | |
| <polygon fill="#edddd5" stroke="#b23f00" points="720.5,-2464 637.5,-2464 637.5,-2420 720.5,-2420 720.5,-2464"/> | |
| <text text-anchor="middle" x="679" y="-2453.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="679" y="-2444.6" font-family="Times,serif" font-size="8.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="679" y="-2435.6" font-family="Times,serif" font-size="8.00">HandleLoaderFinish</text> | |
| <text text-anchor="middle" x="679" y="-2426.6" font-family="Times,serif" font-size="8.00">0 of 2.01s (22.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N72 --> | |
| <g id="edge11" class="edge"><title>N34->N72</title> | |
| <g id="a_edge11"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest -> blink::ResourceFetcher::HandleLoaderFinish (2s)"> | |
| <path fill="none" stroke="#b23f00" stroke-width="2" d="M679,-2514.88C679,-2502.42 679,-2487.32 679,-2474.19"/> | |
| <polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="682.5,-2474.17 679,-2464.17 675.5,-2474.17 682.5,-2474.17"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest -> blink::ResourceFetcher::HandleLoaderFinish (2s)"> | |
| <text text-anchor="middle" x="687" y="-2485.8" font-family="Times,serif" font-size="14.00"> 2s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N8 --> | |
| <g id="edge29" class="edge"><title>N35->N8</title> | |
| <g id="a_edge29"><a xlink:title="content::ThrottlingURLLoader::OnComplete -> content::ResourceDispatcher::OnRequestComplete (0.75s)"> | |
| <path fill="none" stroke="#b28d66" d="M784.442,-2723.26C764.202,-2707.66 736.53,-2686.34 714.613,-2669.45"/> | |
| <polygon fill="#b28d66" stroke="#b28d66" points="716.58,-2666.54 706.522,-2663.21 712.307,-2672.09 716.58,-2666.54"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="content::ThrottlingURLLoader::OnComplete -> content::ResourceDispatcher::OnRequestComplete (0.75s)"> | |
| <text text-anchor="middle" x="763" y="-2684.8" font-family="Times,serif" font-size="14.00"> 0.75s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N29 --> | |
| <g id="edge120" class="edge"><title>N35->N29</title> | |
| <g id="a_edge120"><a xlink:title="content::ThrottlingURLLoader::OnComplete ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M814.327,-2723.44C822.516,-2657.85 855.179,-2453.88 956,-2325 1003.93,-2263.73 1031.55,-2260.76 1103,-2230 1146.91,-2211.1 1280.6,-2215.05 1312,-2179 1331.24,-2156.91 1409.1,-1157.57 1419,-1130 1428.21,-1104.36 1438.88,-1102.3 1453,-1079 1504.19,-994.51 1529.9,-976.28 1552,-880 1602.85,-658.51 1580.95,-591.349 1534,-369 1531.26,-356.025 1526.86,-342.036 1522.72,-330.253"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1525.89,-328.747 1519.19,-320.546 1519.31,-331.14 1525.89,-328.747"/> | |
| </a> | |
| </g> | |
| <g id="a_edge120-label"><a xlink:title="content::ThrottlingURLLoader::OnComplete ... __pthread_mutex_unlock_usercnt (0.01s)"> | |
| <text text-anchor="middle" x="1395" y="-1568.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N1 --> | |
| <g id="edge1" class="edge"><title>N36->N1</title> | |
| <g id="a_edge1"><a xlink:title="base::MessageLoop::RunTask -> base::debug::TaskAnnotator::RunTask (5.95s)"> | |
| <path fill="none" stroke="#b21300" stroke-width="4" d="M1128,-3321.75C1128,-3309.69 1128,-3295.37 1128,-3281.25"/> | |
| <polygon fill="#b21300" stroke="#b21300" stroke-width="4" points="1131.5,-3281.04 1128,-3271.04 1124.5,-3281.04 1131.5,-3281.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="base::MessageLoop::RunTask -> base::debug::TaskAnnotator::RunTask (5.95s)"> | |
| <text text-anchor="middle" x="1145" y="-3292.8" font-family="Times,serif" font-size="14.00"> 5.95s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37 --> | |
| <g id="node37" class="node"><title>N37</title> | |
| <g id="a_node37"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished (1.89s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="738,-2369 620,-2369 620,-2325 738,-2325 738,-2369"/> | |
| <text text-anchor="middle" x="679" y="-2358.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="679" y="-2349.6" font-family="Times,serif" font-size="8.00">DocumentModuleScriptFetcher</text> | |
| <text text-anchor="middle" x="679" y="-2340.6" font-family="Times,serif" font-size="8.00">NotifyFinished</text> | |
| <text text-anchor="middle" x="679" y="-2331.6" font-family="Times,serif" font-size="8.00">0 of 1.89s (21.58%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N25 --> | |
| <g id="edge14" class="edge"><title>N37->N25</title> | |
| <g id="a_edge14"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished ... blink::ModuleScript::Create (1.74s)"> | |
| <path fill="none" stroke="#b24501" stroke-dasharray="1,5" d="M679,-2324.9C679,-2312.89 679,-2297.62 679,-2284.24"/> | |
| <polygon fill="#b24501" stroke="#b24501" points="682.5,-2284.02 679,-2274.02 675.5,-2284.02 682.5,-2284.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished ... blink::ModuleScript::Create (1.74s)"> | |
| <text text-anchor="middle" x="696" y="-2295.8" font-family="Times,serif" font-size="14.00"> 1.74s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38->N16 --> | |
| <g id="edge61" class="edge"><title>N38->N16</title> | |
| <g id="a_edge61"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse ... base::TaskRunner::PostTask (0.10s)"> | |
| <path fill="none" stroke="#b2afa8" stroke-dasharray="1,5" d="M923.237,-2718.73C934.869,-2662.3 962.792,-2531.5 975,-2515 984.247,-2502.5 995.675,-2509.44 1005,-2497 1052.39,-2433.77 1001.96,-2387.74 1050,-2325 1101.68,-2257.51 1139.39,-2266.83 1216,-2230 1271.56,-2203.29 1307.39,-2227.85 1345,-2179 1386.9,-2124.58 1419.12,-1633.61 1416,-1565 1409.33,-1418.32 1392.67,-1382.68 1386,-1236 1383.86,-1188.94 1370.09,-1174.34 1386,-1130 1395.92,-1102.36 1414.42,-1105.03 1428,-1079 1443.58,-1049.15 1452.89,-1011.56 1457.95,-985.438"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="1461.44,-985.811 1459.8,-975.343 1454.56,-984.547 1461.44,-985.811"/> | |
| </a> | |
| </g> | |
| <g id="a_edge61-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse ... base::TaskRunner::PostTask (0.10s)"> | |
| <text text-anchor="middle" x="1422" y="-1822.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70 --> | |
| <g id="node70" class="node"><title>N70</title> | |
| <g id="a_node70"><a xlink:title="madvise (0.06s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="431.5,-466 348.5,-466 348.5,-430 431.5,-430 431.5,-466"/> | |
| <text text-anchor="middle" x="390" y="-451.4" font-family="Times,serif" font-size="12.00">madvise</text> | |
| <text text-anchor="middle" x="390" y="-438.4" font-family="Times,serif" font-size="12.00">0.06s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N70 --> | |
| <g id="edge96" class="edge"><title>N39->N70</title> | |
| <g id="a_edge96"><a xlink:title="(anonymous namespace)::do_free_with_callback ... madvise (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M352.653,-551.705C360.94,-528.915 372.34,-497.564 380.359,-475.513"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="383.654,-476.694 383.782,-466.1 377.075,-474.302 383.654,-476.694"/> | |
| </a> | |
| </g> | |
| <g id="a_edge96-label"><a xlink:title="(anonymous namespace)::do_free_with_callback ... madvise (0.02s)"> | |
| <text text-anchor="middle" x="383" y="-515.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N12 --> | |
| <g id="edge74" class="edge"><title>N40->N12</title> | |
| <g id="a_edge74"><a xlink:title="mojo::Message::Message ... syscall (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M778.852,-1032.35C854.958,-994.84 1023.69,-911.677 1109.19,-869.537"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="1110.77,-872.659 1118.19,-865.098 1107.68,-866.38 1110.77,-872.659"/> | |
| </a> | |
| </g> | |
| <g id="a_edge74-label"><a xlink:title="mojo::Message::Message ... syscall (0.06s)"> | |
| <text text-anchor="middle" x="996" y="-949.3" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N14 --> | |
| <g id="edge86" class="edge"><title>N40->N14</title> | |
| <g id="a_edge86"><a xlink:title="mojo::Message::Message ... operator new (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M741.154,-1030.37C744.335,-970.227 753,-792.891 753,-645.5 753,-645.5 753,-645.5 753,-447 753,-332.372 343.584,-308.605 192.307,-303.736"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="192.398,-300.238 182.296,-303.43 192.184,-307.234 192.398,-300.238"/> | |
| </a> | |
| </g> | |
| <g id="a_edge86-label"><a xlink:title="mojo::Message::Message ... operator new (0.03s)"> | |
| <text text-anchor="middle" x="770" y="-708.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N39 --> | |
| <g id="edge126" class="edge"><title>N40->N39</title> | |
| <g id="a_edge126"><a xlink:title="mojo::Message::Message ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M701.437,-1042.54C632.844,-1024.48 490.169,-976.876 419,-880 353.923,-791.417 411.115,-740.098 373,-637 371.055,-631.74 368.626,-626.395 365.988,-621.214"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="368.908,-619.255 361.075,-612.122 362.75,-622.584 368.908,-619.255"/> | |
| </a> | |
| </g> | |
| <g id="a_edge126-label"><a xlink:title="mojo::Message::Message ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <text text-anchor="middle" x="436" y="-839.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60 --> | |
| <g id="node60" class="node"><title>N60</title> | |
| <g id="a_node60"><a xlink:title="mojo::edk::(anonymous namespace)::CreateOrExtendSerializedEventMessage (0.09s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="717,-749.5 535,-749.5 535,-675.5 717,-675.5 717,-749.5"/> | |
| <text text-anchor="middle" x="626" y="-737.5" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="626" y="-726.5" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="626" y="-715.5" font-family="Times,serif" font-size="10.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="626" y="-704.5" font-family="Times,serif" font-size="10.00">CreateOrExtendSerializedEventMessage</text> | |
| <text text-anchor="middle" x="626" y="-693.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="626" y="-682.5" font-family="Times,serif" font-size="10.00">of 0.09s (1.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N60 --> | |
| <g id="edge104" class="edge"><title>N40->N60</title> | |
| <g id="a_edge104"><a xlink:title="mojo::Message::Message ... mojo::edk::(anonymous namespace)::CreateOrExtendSerializedEventMessage (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M717.338,-1030.27C674.793,-988.678 584.261,-891.438 551,-788 547.393,-776.784 550.312,-766.508 556.709,-757.407"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="559.413,-759.63 563.151,-749.716 554.046,-755.135 559.413,-759.63"/> | |
| </a> | |
| </g> | |
| <g id="a_edge104-label"><a xlink:title="mojo::Message::Message ... mojo::edk::(anonymous namespace)::CreateOrExtendSerializedEventMessage (0.02s)"> | |
| <text text-anchor="middle" x="633" y="-901.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41 --> | |
| <g id="node41" class="node"><title>N41</title> | |
| <g id="a_node41"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (5.60s)"> | |
| <polygon fill="#edd8d5" stroke="#b21600" points="1252.5,-3006 1139.5,-3006 1139.5,-2953 1252.5,-2953 1252.5,-3006"/> | |
| <text text-anchor="middle" x="1196" y="-2995.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1196" y="-2986.6" font-family="Times,serif" font-size="8.00">scheduler</text> | |
| <text text-anchor="middle" x="1196" y="-2977.6" font-family="Times,serif" font-size="8.00">TaskQueueManager</text> | |
| <text text-anchor="middle" x="1196" y="-2968.6" font-family="Times,serif" font-size="8.00">ProcessTaskFromWorkQueue</text> | |
| <text text-anchor="middle" x="1196" y="-2959.6" font-family="Times,serif" font-size="8.00">0 of 5.60s (63.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N1 --> | |
| <g id="edge8" class="edge"><title>N41->N1</title> | |
| <g id="a_edge8"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> base::debug::TaskAnnotator::RunTask (5.31s)"> | |
| <path fill="none" stroke="#b21800" stroke-width="4" d="M1170,-3006.02C1157.66,-3019.85 1144.09,-3037.98 1137,-3057 1126.01,-3086.48 1123.05,-3121.19 1123.13,-3150.56"/> | |
| <polygon fill="#b21800" stroke="#b21800" stroke-width="4" points="1119.64,-3150.77 1123.28,-3160.71 1126.64,-3150.66 1119.64,-3150.77"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> base::debug::TaskAnnotator::RunTask (5.31s)"> | |
| <text text-anchor="middle" x="1154" y="-3079.8" font-family="Times,serif" font-size="14.00"> 5.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N12 --> | |
| <g id="edge72" class="edge"><title>N41->N12</title> | |
| <g id="a_edge72"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue ... syscall (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M1198.53,-2952.61C1200.53,-2929.83 1203,-2895.74 1203,-2866 1203,-2866 1203,-2866 1203,-2488.5 1203,-2350.93 1199.11,-2316.57 1198,-2179 1197.73,-2146.11 1197.33,-2137.88 1198,-2105 1200,-2006.27 1200.75,-1981.55 1207,-1883 1216.48,-1733.41 1229.55,-1696.75 1236,-1547 1239.33,-1469.66 1235,-1450.1 1228,-1373 1208.78,-1161.45 1213.53,-1106.9 1175,-898 1173.61,-890.47 1171.74,-882.44 1169.83,-874.938"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="1173.17,-873.898 1167.22,-865.131 1166.41,-875.694 1173.17,-873.898"/> | |
| </a> | |
| </g> | |
| <g id="a_edge72-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue ... syscall (0.06s)"> | |
| <text text-anchor="middle" x="1224" y="-1886.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N44 --> | |
| <g id="edge102" class="edge"><title>N42->N44</title> | |
| <g id="a_edge102"><a xlink:title="mojo::Connector::Accept ... mojo::edk::NodeController::ForwardEvent (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1364.1,-930.92C1361.4,-916.381 1357.76,-896.694 1354.62,-879.732"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1358,-878.789 1352.74,-869.593 1351.12,-880.064 1358,-878.789"/> | |
| </a> | |
| </g> | |
| <g id="a_edge102-label"><a xlink:title="mojo::Connector::Accept ... mojo::edk::NodeController::ForwardEvent (0.02s)"> | |
| <text text-anchor="middle" x="1378" y="-901.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N53 --> | |
| <g id="edge85" class="edge"><title>N42->N53</title> | |
| <g id="a_edge85"><a xlink:title="mojo::Connector::Accept ... mojo::edk::NodeController::PortStatusChanged (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M1345.47,-930.796C1331.51,-917.038 1313.69,-898.32 1300,-880 1277.23,-849.526 1287.54,-828.67 1257,-806 1229.13,-785.312 1213.25,-800.833 1181,-788 1153.8,-777.178 1138.62,-780.36 1124,-755 1068.74,-659.155 1112.1,-600.868 1178,-512 1186.16,-501.002 1191.9,-502.021 1203,-494 1205.03,-492.534 1207.09,-491.041 1209.18,-489.532"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="1211.24,-492.359 1217.29,-483.659 1207.13,-486.69 1211.24,-492.359"/> | |
| </a> | |
| </g> | |
| <g id="a_edge85-label"><a xlink:title="mojo::Connector::Accept ... mojo::edk::NodeController::PortStatusChanged (0.03s)"> | |
| <text text-anchor="middle" x="1141" y="-708.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68 --> | |
| <g id="node68" class="node"><title>N68</title> | |
| <g id="a_node68"><a xlink:title="mojo::edk::UserMessageImpl::CommitSerializedContents (0.14s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea4" points="980.5,-880 853.5,-880 853.5,-806 980.5,-806 980.5,-880"/> | |
| <text text-anchor="middle" x="917" y="-868" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="917" y="-857" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="917" y="-846" font-family="Times,serif" font-size="10.00">UserMessageImpl</text> | |
| <text text-anchor="middle" x="917" y="-835" font-family="Times,serif" font-size="10.00">CommitSerializedContents</text> | |
| <text text-anchor="middle" x="917" y="-824" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="917" y="-813" font-family="Times,serif" font-size="10.00">of 0.14s (1.60%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N68 --> | |
| <g id="edge54" class="edge"><title>N42->N68</title> | |
| <g id="a_edge54"><a xlink:title="mojo::Connector::Accept ... mojo::edk::UserMessageImpl::CommitSerializedContents (0.14s)"> | |
| <path fill="none" stroke="#b2aea4" stroke-dasharray="1,5" d="M1329.26,-935.529C1324.51,-933.844 1319.68,-932.283 1315,-931 1176.11,-892.913 1132.79,-921.903 995,-880 993.528,-879.552 992.049,-879.083 990.564,-878.593"/> | |
| <polygon fill="#b2aea4" stroke="#b2aea4" points="991.321,-875.148 980.727,-875.1 988.979,-881.744 991.321,-875.148"/> | |
| </a> | |
| </g> | |
| <g id="a_edge54-label"><a xlink:title="mojo::Connector::Accept ... mojo::edk::UserMessageImpl::CommitSerializedContents (0.14s)"> | |
| <text text-anchor="middle" x="1240" y="-901.8" font-family="Times,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N14 --> | |
| <g id="edge83" class="edge"><title>N43->N14</title> | |
| <g id="a_edge83"><a xlink:title="content::WebURLLoaderImpl::Context::Start ... operator new (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M747.284,-1377.84C727.095,-1362.16 701.137,-1341.45 679,-1322 677.557,-1320.73 481.685,-1130.92 480,-1130 393.825,-1082.9 355.439,-1117.28 265,-1079 185.863,-1045.5 168.077,-1029.94 102,-975 69.9628,-948.362 38,-948.165 38,-906.5 38,-906.5 38,-906.5 38,-447 38,-399.963 74.1419,-357.014 102.751,-330.384"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="105.136,-332.947 110.209,-323.645 100.443,-327.753 105.136,-332.947"/> | |
| </a> | |
| </g> | |
| <g id="a_edge83-label"><a xlink:title="content::WebURLLoaderImpl::Context::Start ... operator new (0.03s)"> | |
| <text text-anchor="middle" x="56" y="-901.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N19 --> | |
| <g id="edge32" class="edge"><title>N43->N19</title> | |
| <g id="a_edge32"><a xlink:title="content::WebURLLoaderImpl::Context::Start ... content::ThrottlingURLLoader::StartNow (0.51s)"> | |
| <path fill="none" stroke="#b29c7e" stroke-dasharray="1,5" d="M791.548,-1377.8C798.66,-1360.48 808.073,-1337.55 815.552,-1319.32"/> | |
| <polygon fill="#b29c7e" stroke="#b29c7e" points="818.814,-1320.6 819.373,-1310.02 812.338,-1317.94 818.814,-1320.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="content::WebURLLoaderImpl::Context::Start ... content::ThrottlingURLLoader::StartNow (0.51s)"> | |
| <text text-anchor="middle" x="823" y="-1343.8" font-family="Times,serif" font-size="14.00"> 0.51s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61 --> | |
| <g id="node61" class="node"><title>N61</title> | |
| <g id="a_node61"><a xlink:title="WTF::AtomicString::AddSlowCase (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="555.5,-1319.5 472.5,-1319.5 472.5,-1256.5 555.5,-1256.5 555.5,-1319.5"/> | |
| <text text-anchor="middle" x="514" y="-1307.5" font-family="Times,serif" font-size="10.00">WTF</text> | |
| <text text-anchor="middle" x="514" y="-1296.5" font-family="Times,serif" font-size="10.00">AtomicString</text> | |
| <text text-anchor="middle" x="514" y="-1285.5" font-family="Times,serif" font-size="10.00">AddSlowCase</text> | |
| <text text-anchor="middle" x="514" y="-1274.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="514" y="-1263.5" font-family="Times,serif" font-size="10.00">of 0.08s (0.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N61 --> | |
| <g id="edge101" class="edge"><title>N43->N61</title> | |
| <g id="a_edge101"><a xlink:title="content::WebURLLoaderImpl::Context::Start ... WTF::AtomicString::AddSlowCase (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M737.911,-1387.57C713.687,-1378.42 682.985,-1366.49 656,-1355 625.46,-1341.99 591.748,-1326.38 564.838,-1313.6"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="566.153,-1310.35 555.62,-1309.21 563.143,-1316.67 566.153,-1310.35"/> | |
| </a> | |
| </g> | |
| <g id="a_edge101-label"><a xlink:title="content::WebURLLoaderImpl::Context::Start ... WTF::AtomicString::AddSlowCase (0.02s)"> | |
| <text text-anchor="middle" x="673" y="-1343.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N29 --> | |
| <g id="edge108" class="edge"><title>N44->N29</title> | |
| <g id="a_edge108"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1386.6,-821.005C1410.42,-805.909 1439.31,-783.26 1455,-755 1465.37,-736.314 1498.8,-427.223 1509.01,-330.917"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1512.51,-331.072 1510.08,-320.759 1505.55,-330.335 1512.51,-331.072"/> | |
| </a> | |
| </g> | |
| <g id="a_edge108-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <text text-anchor="middle" x="1502" y="-578.3" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N32 --> | |
| <g id="edge134" class="edge"><title>N44->N32</title> | |
| <g id="a_edge134"><a xlink:title="mojo::edk::NodeController::ForwardEvent -> mojo::edk::ports::Node::AcceptEvent (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1315,-816.49C1308.63,-812.476 1301.81,-808.75 1295,-806 1251.51,-788.425 1221.21,-823.887 1191,-788 1185.52,-781.487 1183.9,-773.575 1184.56,-765.371"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1188.04,-765.757 1186.38,-755.294 1181.16,-764.51 1188.04,-765.757"/> | |
| </a> | |
| </g> | |
| <g id="a_edge134-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent -> mojo::edk::ports::Node::AcceptEvent (0.01s)"> | |
| <text text-anchor="middle" x="1208" y="-776.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N39 --> | |
| <g id="edge132" class="edge"><title>N44->N39</title> | |
| <g id="a_edge132"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1309.41,-828.311C1284.98,-820.29 1252.53,-810.815 1223,-806 1038.6,-775.934 989.323,-801.864 803,-788 785.673,-786.711 506.873,-763.982 492,-755 437.974,-722.374 456.262,-682.952 413,-637 407.049,-630.679 400.299,-624.536 393.386,-618.797"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="395.224,-615.786 385.233,-612.26 390.845,-621.246 395.224,-615.786"/> | |
| </a> | |
| </g> | |
| <g id="a_edge132-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <text text-anchor="middle" x="509" y="-708.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62 --> | |
| <g id="node62" class="node"><title>N62</title> | |
| <g id="a_node62"><a xlink:title="__lll_unlock_wake (0.06s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="1446.5,-730.5 1339.5,-730.5 1339.5,-694.5 1446.5,-694.5 1446.5,-730.5"/> | |
| <text text-anchor="middle" x="1393" y="-715.9" font-family="Times,serif" font-size="12.00">__lll_unlock_wake</text> | |
| <text text-anchor="middle" x="1393" y="-702.9" font-family="Times,serif" font-size="12.00">0.06s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N62 --> | |
| <g id="edge107" class="edge"><title>N44->N62</title> | |
| <g id="a_edge107"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... __lll_unlock_wake (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1357,-816.305C1364.74,-794.202 1375.86,-762.439 1383.69,-740.083"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1387.03,-741.136 1387.03,-730.541 1380.42,-738.822 1387.03,-741.136"/> | |
| </a> | |
| </g> | |
| <g id="a_edge107-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... __lll_unlock_wake (0.02s)"> | |
| <text text-anchor="middle" x="1389" y="-776.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75 --> | |
| <g id="node75" class="node"><title>N75</title> | |
| <g id="a_node75"><a xlink:title="mojo::edk::NodeChannel::CreateEventMessage (0.05s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="721,-619 619,-619 619,-545 721,-545 721,-619"/> | |
| <text text-anchor="middle" x="670" y="-607" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="670" y="-596" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="670" y="-585" font-family="Times,serif" font-size="10.00">NodeChannel</text> | |
| <text text-anchor="middle" x="670" y="-574" font-family="Times,serif" font-size="10.00">CreateEventMessage</text> | |
| <text text-anchor="middle" x="670" y="-563" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="670" y="-552" font-family="Times,serif" font-size="10.00">of 0.05s (0.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N75 --> | |
| <g id="edge133" class="edge"><title>N44->N75</title> | |
| <g id="a_edge133"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... mojo::edk::NodeChannel::CreateEventMessage (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1331.41,-816.226C1320.72,-799.168 1306.86,-776.129 1296,-755 1277.17,-718.353 1291.74,-695.016 1259,-670 1196.55,-622.279 986.75,-630.52 909,-619 848.548,-610.043 779.525,-599.626 731.249,-592.309"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="731.685,-588.835 721.273,-590.796 730.635,-595.756 731.685,-588.835"/> | |
| </a> | |
| </g> | |
| <g id="a_edge133-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent ... mojo::edk::NodeChannel::CreateEventMessage (0.01s)"> | |
| <text text-anchor="middle" x="1313" y="-708.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N33 --> | |
| <g id="edge43" class="edge"><title>N45->N33</title> | |
| <g id="a_edge43"><a xlink:title="base::internal::Invoker::Run ... IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage (0.27s)"> | |
| <path fill="none" stroke="#b2a896" stroke-dasharray="1,5" d="M1057.74,-3056.61C1061.1,-3036.05 1065,-3006.53 1065,-2980.5 1065,-2980.5 1065,-2980.5 1065,-2592.5 1065,-2468.3 1391.46,-2292.89 1441,-2179 1487.6,-2071.86 1579.21,-1226.94 1514,-1130 1488.93,-1092.73 1442.2,-1073.6 1401.61,-1063.8"/> | |
| <polygon fill="#b2a896" stroke="#b2a896" points="1402.23,-1060.35 1391.71,-1061.56 1400.69,-1067.18 1402.23,-1060.35"/> | |
| </a> | |
| </g> | |
| <g id="a_edge43-label"><a xlink:title="base::internal::Invoker::Run ... IPC::(anonymous namespace)::ChannelAssociatedGroupController::SendMessage (0.27s)"> | |
| <text text-anchor="middle" x="1478" y="-2138.3" font-family="Times,serif" font-size="14.00"> 0.27s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N40 --> | |
| <g id="edge99" class="edge"><title>N45->N40</title> | |
| <g id="a_edge99"><a xlink:title="base::internal::Invoker::Run ... mojo::Message::Message (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1036.37,-3056.9C1010.82,-3019.91 958.189,-2952.43 895,-2920 847.02,-2895.38 819.612,-2932.3 775,-2902 743.534,-2880.63 760.932,-2852.69 732,-2828 684.163,-2787.17 643.294,-2822.62 600,-2777 446.604,-2615.36 444,-2523.34 444,-2300.5 444,-2300.5 444,-2300.5 444,-1984 444,-1839.93 515.543,-1816.62 542,-1675 576.406,-1490.82 578.562,-1440.8 564,-1254 559.708,-1198.94 525.349,-1175.94 556,-1130 585.864,-1085.24 647.357,-1066.63 691.023,-1058.92"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="691.85,-1062.33 701.156,-1057.27 690.723,-1055.42 691.85,-1062.33"/> | |
| </a> | |
| </g> | |
| <g id="a_edge99-label"><a xlink:title="base::internal::Invoker::Run ... mojo::Message::Message (0.02s)"> | |
| <text text-anchor="middle" x="461" y="-2138.3" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69 --> | |
| <g id="node69" class="node"><title>N69</title> | |
| <g id="a_node69"><a xlink:title="v8::Isolate::GetHeapStatistics (0.09s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1003.5,-1320 890.5,-1320 890.5,-1256 1003.5,-1256 1003.5,-1320"/> | |
| <text text-anchor="middle" x="947" y="-1305.6" font-family="Times,serif" font-size="13.00">v8</text> | |
| <text text-anchor="middle" x="947" y="-1291.6" font-family="Times,serif" font-size="13.00">Isolate</text> | |
| <text text-anchor="middle" x="947" y="-1277.6" font-family="Times,serif" font-size="13.00">GetHeapStatistics</text> | |
| <text text-anchor="middle" x="947" y="-1263.6" font-family="Times,serif" font-size="13.00">0.09s (1.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N69 --> | |
| <g id="edge63" class="edge"><title>N46->N69</title> | |
| <g id="a_edge63"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics -> v8::Isolate::GetHeapStatistics (0.09s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M919.183,-1372.82C923.577,-1359.58 928.78,-1343.9 933.49,-1329.71"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="936.828,-1330.76 936.656,-1320.17 930.185,-1328.56 936.828,-1330.76"/> | |
| </a> | |
| </g> | |
| <g id="a_edge63-label"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics -> v8::Isolate::GetHeapStatistics (0.09s)"> | |
| <text text-anchor="middle" x="947" y="-1343.8" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79 --> | |
| <g id="node79" class="node"><title>N79</title> | |
| <g id="a_node79"><a xlink:title="WTF::Partitions::TotalActiveBytes (0.15s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="765.5,-1310 688.5,-1310 688.5,-1266 765.5,-1266 765.5,-1310"/> | |
| <text text-anchor="middle" x="727" y="-1299.6" font-family="Times,serif" font-size="8.00">WTF</text> | |
| <text text-anchor="middle" x="727" y="-1290.6" font-family="Times,serif" font-size="8.00">Partitions</text> | |
| <text text-anchor="middle" x="727" y="-1281.6" font-family="Times,serif" font-size="8.00">TotalActiveBytes</text> | |
| <text text-anchor="middle" x="727" y="-1272.6" font-family="Times,serif" font-size="8.00">0 of 0.15s (1.71%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N79 --> | |
| <g id="edge53" class="edge"><title>N46->N79</title> | |
| <g id="a_edge53"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics ... WTF::Partitions::TotalActiveBytes (0.15s)"> | |
| <path fill="none" stroke="#b2ada3" stroke-dasharray="1,5" d="M841.619,-1375.94C838.717,-1374.92 835.836,-1373.93 833,-1373 802.9,-1363.08 789.085,-1374.37 764,-1355 752.318,-1345.98 743.763,-1332.16 737.84,-1319.5"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="740.981,-1317.94 733.816,-1310.14 734.55,-1320.71 740.981,-1317.94"/> | |
| </a> | |
| </g> | |
| <g id="a_edge53-label"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics ... WTF::Partitions::TotalActiveBytes (0.15s)"> | |
| <text text-anchor="middle" x="781" y="-1343.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47 --> | |
| <g id="node47" class="node"><title>N47</title> | |
| <g id="a_node47"><a xlink:title="blink::ResourceFetcher::RequestResource (1.29s)"> | |
| <polygon fill="#ede3db" stroke="#b2682f" points="1092,-1642 1012,-1642 1012,-1598 1092,-1598 1092,-1642"/> | |
| <text text-anchor="middle" x="1052" y="-1631.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1052" y="-1622.6" font-family="Times,serif" font-size="8.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="1052" y="-1613.6" font-family="Times,serif" font-size="8.00">RequestResource</text> | |
| <text text-anchor="middle" x="1052" y="-1604.6" font-family="Times,serif" font-size="8.00">0 of 1.29s (14.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N18 --> | |
| <g id="edge27" class="edge"><title>N47->N18</title> | |
| <g id="a_edge27"><a xlink:title="blink::ResourceFetcher::RequestResource ... blink::ResourceLoader::Start (1.05s)"> | |
| <path fill="none" stroke="#b27947" stroke-dasharray="1,5" d="M1022.99,-1598C1008.07,-1587.56 989.405,-1575.07 972,-1565 957.235,-1556.46 940.696,-1547.99 925.561,-1540.64"/> | |
| <polygon fill="#b27947" stroke="#b27947" points="926.877,-1537.39 916.347,-1536.23 923.85,-1543.71 926.877,-1537.39"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-label"><a xlink:title="blink::ResourceFetcher::RequestResource ... blink::ResourceLoader::Start (1.05s)"> | |
| <text text-anchor="middle" x="1012" y="-1568.8" font-family="Times,serif" font-size="14.00"> 1.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65 --> | |
| <g id="node65" class="node"><title>N65</title> | |
| <g id="a_node65"><a xlink:title="WTF::HashTable::Lookup (0.05s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="1093.5,-1547 1010.5,-1547 1010.5,-1487 1093.5,-1487 1093.5,-1547"/> | |
| <text text-anchor="middle" x="1052" y="-1533.4" font-family="Times,serif" font-size="12.00">WTF</text> | |
| <text text-anchor="middle" x="1052" y="-1520.4" font-family="Times,serif" font-size="12.00">HashTable</text> | |
| <text text-anchor="middle" x="1052" y="-1507.4" font-family="Times,serif" font-size="12.00">Lookup</text> | |
| <text text-anchor="middle" x="1052" y="-1494.4" font-family="Times,serif" font-size="12.00">0.05s (0.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N65 --> | |
| <g id="edge117" class="edge"><title>N47->N65</title> | |
| <g id="a_edge117"><a xlink:title="blink::ResourceFetcher::RequestResource ... WTF::HashTable::Lookup (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1052,-1597.58C1052,-1585.86 1052,-1570.97 1052,-1557.25"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1055.5,-1557.05 1052,-1547.05 1048.5,-1557.05 1055.5,-1557.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge117-label"><a xlink:title="blink::ResourceFetcher::RequestResource ... WTF::HashTable::Lookup (0.01s)"> | |
| <text text-anchor="middle" x="1069" y="-1568.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77 --> | |
| <g id="node77" class="node"><title>N77</title> | |
| <g id="a_node77"><a xlink:title="blink::KURL::Init (0.30s)"> | |
| <polygon fill="#edebe9" stroke="#b2a793" points="1227.5,-1539 1150.5,-1539 1150.5,-1495 1227.5,-1495 1227.5,-1539"/> | |
| <text text-anchor="middle" x="1189" y="-1528.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1189" y="-1519.6" font-family="Times,serif" font-size="8.00">KURL</text> | |
| <text text-anchor="middle" x="1189" y="-1510.6" font-family="Times,serif" font-size="8.00">Init</text> | |
| <text text-anchor="middle" x="1189" y="-1501.6" font-family="Times,serif" font-size="8.00">0 of 0.30s (3.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N77 --> | |
| <g id="edge118" class="edge"><title>N47->N77</title> | |
| <g id="a_edge118"><a xlink:title="blink::ResourceFetcher::RequestResource ... blink::KURL::Init (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1080.72,-1597.83C1101.45,-1582.54 1129.63,-1561.77 1152.04,-1545.25"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1154.35,-1547.9 1160.32,-1539.15 1150.19,-1542.26 1154.35,-1547.9"/> | |
| </a> | |
| </g> | |
| <g id="a_edge118-label"><a xlink:title="blink::ResourceFetcher::RequestResource ... blink::KURL::Init (0.01s)"> | |
| <text text-anchor="middle" x="1142" y="-1568.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49 --> | |
| <g id="node49" class="node"><title>N49</title> | |
| <g id="a_node49"><a xlink:title="mojo::edk::ports::SinglePortLocker::SinglePortLocker (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="1187,-347.5 1093,-347.5 1093,-255.5 1187,-255.5 1187,-347.5"/> | |
| <text text-anchor="middle" x="1140" y="-334.7" font-family="Times,serif" font-size="11.00">mojo</text> | |
| <text text-anchor="middle" x="1140" y="-322.7" font-family="Times,serif" font-size="11.00">edk</text> | |
| <text text-anchor="middle" x="1140" y="-310.7" font-family="Times,serif" font-size="11.00">ports</text> | |
| <text text-anchor="middle" x="1140" y="-298.7" font-family="Times,serif" font-size="11.00">SinglePortLocker</text> | |
| <text text-anchor="middle" x="1140" y="-286.7" font-family="Times,serif" font-size="11.00">SinglePortLocker</text> | |
| <text text-anchor="middle" x="1140" y="-274.7" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text> | |
| <text text-anchor="middle" x="1140" y="-262.7" font-family="Times,serif" font-size="11.00">of 0.08s (0.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49->N22 --> | |
| <g id="edge92" class="edge"><title>N49->N22</title> | |
| <g id="a_edge92"><a xlink:title="mojo::edk::ports::SinglePortLocker::SinglePortLocker -> __GI___pthread_mutex_lock (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" d="M1187.02,-290.481C1288.9,-268.777 1532.04,-216.975 1672,-187.157"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="1672.84,-190.556 1681.89,-185.049 1671.38,-183.71 1672.84,-190.556"/> | |
| </a> | |
| </g> | |
| <g id="a_edge92-label"><a xlink:title="mojo::edk::ports::SinglePortLocker::SinglePortLocker -> __GI___pthread_mutex_lock (0.03s)"> | |
| <text text-anchor="middle" x="1532" y="-222.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49->N67 --> | |
| <g id="edge138" class="edge"><title>N49->N67</title> | |
| <g id="a_edge138"><a xlink:title="mojo::edk::ports::SinglePortLocker::SinglePortLocker -> base::internal::LockImpl::Lock (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1140,-255.38C1140,-241.256 1140,-225.649 1140,-211.435"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1143.5,-211.373 1140,-201.373 1136.5,-211.373 1143.5,-211.373"/> | |
| </a> | |
| </g> | |
| <g id="a_edge138-label"><a xlink:title="mojo::edk::ports::SinglePortLocker::SinglePortLocker -> base::internal::LockImpl::Lock (0.01s)"> | |
| <text text-anchor="middle" x="1157" y="-222.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N4 --> | |
| <g id="edge64" class="edge"><title>N50->N4</title> | |
| <g id="a_edge64"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... <unknown> (0.09s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M1007.91,-1958.45C999.329,-1937.64 986.168,-1907.75 972,-1883 970.25,-1879.94 968.377,-1876.84 966.433,-1873.75"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="969.197,-1871.58 960.811,-1865.11 963.328,-1875.4 969.197,-1871.58"/> | |
| </a> | |
| </g> | |
| <g id="a_edge64-label"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... <unknown> (0.09s)"> | |
| <text text-anchor="middle" x="997" y="-1886.8" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N12 --> | |
| <g id="edge67" class="edge"><title>N50->N12</title> | |
| <g id="a_edge67"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... syscall (0.07s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1031.14,-1958.2C1052.73,-1914.19 1094.83,-1821.21 1110,-1737 1116.1,-1703.12 1119.18,-1738.22 1102,-1487 1100.45,-1464.28 1098.11,-1458.75 1097,-1436 1095.63,-1408.03 1083.96,-1397.78 1097,-1373 1109.05,-1350.09 1122.13,-1352.13 1145,-1340 1164.4,-1329.71 1178.62,-1340.13 1191,-1322 1209.28,-1295.22 1173.67,-1162.75 1169,-1112 1161.15,-1026.71 1160.45,-925.577 1160.68,-875.434"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1164.18,-875.268 1160.74,-865.247 1157.18,-875.225 1164.18,-875.268"/> | |
| </a> | |
| </g> | |
| <g id="a_edge67-label"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... syscall (0.07s)"> | |
| <text text-anchor="middle" x="1114" y="-1400.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N39 --> | |
| <g id="edge130" class="edge"><title>N50->N39</title> | |
| <g id="a_edge130"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M974.192,-1958.37C870.73,-1897.4 614.492,-1743.71 542,-1675 329.221,-1473.33 321,-1346.67 321,-1053.5 321,-1053.5 321,-1053.5 321,-711.5 321,-681.202 326.757,-647.405 332.242,-622.079"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="335.701,-622.648 334.478,-612.124 328.871,-621.114 335.701,-622.648"/> | |
| </a> | |
| </g> | |
| <g id="a_edge130-label"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... (anonymous namespace)::do_free_with_callback (0.01s)"> | |
| <text text-anchor="middle" x="351" y="-1284.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N41 --> | |
| <g id="edge5" class="edge"><title>N51->N41</title> | |
| <g id="a_edge5"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork -> blink::s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment