Created
October 27, 2018 04:54
-
-
Save shogo82148/3b8c28125e73ac66f93e8b6ac64ee7a8 to your computer and use it in GitHub Desktop.
Profiles of go-langserver
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.40.1 (20161225.0304) | |
--> | |
<!-- Title: go-langserver 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 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 | |
* | |
* This code is licensed under the following BSD license: | |
* | |
* Copyright 2009-2017 Andrea Leofreddi <[email protected]>. 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. | |
* 3. Neither the name of the copyright holder nor the names of its | |
* contributors may be used to endorse or promote products derived from | |
* this software without specific prior written permission. | |
* | |
* THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDERS AND CONTRIBUTORS ''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 COPYRIGHT HOLDERS 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.2; // 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, t.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 2815)"> | |
<title>go-langserver</title> | |
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-2815 1974.7861,-2815 1974.7861,4 -4,4"/> | |
<g id="clust1" class="cluster"> | |
<title>cluster_L</title> | |
<polygon fill="none" stroke="#000000" points="300,-2667 300,-2803 796,-2803 796,-2667 300,-2667"/> | |
</g> | |
<!-- File: go-langserver --> | |
<g id="node1" class="node"> | |
<title>File: go-langserver</title> | |
<g id="a_node1"><a xlink:title="go-langserver"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="787.9688,-2795 308.0312,-2795 308.0312,-2675 787.9688,-2675 787.9688,-2795"/> | |
<text text-anchor="start" x="316.0156" y="-2778.2" font-family="Times,serif" font-size="16.00" fill="#000000">File: go-langserver</text> | |
<text text-anchor="start" x="316.0156" y="-2762.2" font-family="Times,serif" font-size="16.00" fill="#000000">Type: inuse_space</text> | |
<text text-anchor="start" x="316.0156" y="-2746.2" font-family="Times,serif" font-size="16.00" fill="#000000">Time: Oct 27, 2018 at 1:28pm (JST)</text> | |
<text text-anchor="start" x="316.0156" y="-2730.2" font-family="Times,serif" font-size="16.00" fill="#000000">Showing nodes accounting for 3877.73MB, 50.49% of 7680.62MB total</text> | |
<text text-anchor="start" x="316.0156" y="-2714.2" font-family="Times,serif" font-size="16.00" fill="#000000">Dropped 211 nodes (cum <= 38.40MB)</text> | |
<text text-anchor="start" x="316.0156" y="-2698.2" font-family="Times,serif" font-size="16.00" fill="#000000">Dropped 18 edges (freq <= 7.68MB)</text> | |
<text text-anchor="start" x="316.0156" y="-2682.2" font-family="Times,serif" font-size="16.00" fill="#000000">Showing top 40 nodes out of 185</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1 --> | |
<g id="node1" class="node"> | |
<title>N1</title> | |
<g id="a_node1"><a xlink:title="go/parser.(*parser).parseStmt (2147.83MB)"> | |
<polygon fill="#eddcd5" stroke="#b23800" points="180.3819,-2144 65.6181,-2144 65.6181,-2086 180.3819,-2086 180.3819,-2144"/> | |
<text text-anchor="middle" x="123" y="-2132" font-family="Times,serif" font-size="10.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="123" y="-2122" font-family="Times,serif" font-size="10.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="123" y="-2112" font-family="Times,serif" font-size="10.00" fill="#000000">parseStmt</text> | |
<text text-anchor="middle" x="123" y="-2102" font-family="Times,serif" font-size="10.00" fill="#000000">4.50MB (0.059%)</text> | |
<text text-anchor="middle" x="123" y="-2092" font-family="Times,serif" font-size="10.00" fill="#000000">of 2147.83MB (27.96%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN1_0 --> | |
<g id="NN1_0" class="node"> | |
<title>NN1_0</title> | |
<g id="a_NN1_0"><a xlink:title="4.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="150,-1999.5 100,-1999.5 96,-1995.5 96,-1963.5 146,-1963.5 150,-1967.5 150,-1999.5"/> | |
<polyline fill="none" stroke="#000000" points="146,-1995.5 96,-1995.5 "/> | |
<polyline fill="none" stroke="#000000" points="146,-1995.5 146,-1963.5 "/> | |
<polyline fill="none" stroke="#000000" points="146,-1995.5 150,-1999.5 "/> | |
<text text-anchor="middle" x="123" y="-1979.1" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->NN1_0 --> | |
<g id="edge1" class="edge"> | |
<title>N1->NN1_0</title> | |
<g id="a_edge1"><a xlink:title="4.50MB"> | |
<path fill="none" stroke="#000000" d="M123,-2085.7029C123,-2063.1445 123,-2032.1481 123,-2009.8345"/> | |
<polygon fill="#000000" stroke="#000000" points="126.5001,-2009.6531 123,-1999.6531 119.5001,-2009.6532 126.5001,-2009.6531"/> | |
</a> | |
</g> | |
<g id="a_edge1-label"><a xlink:title="4.50MB"> | |
<text text-anchor="middle" x="147.8931" y="-2044.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 4.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3 --> | |
<g id="node3" class="node"> | |
<title>N3</title> | |
<g id="a_node3"><a xlink:title="go/parser.(*parser).parseSimpleStmt (1405.06MB)"> | |
<polygon fill="#ede0d7" stroke="#b2500f" points="270.3231,-1896 105.6769,-1896 105.6769,-1813 270.3231,-1813 270.3231,-1896"/> | |
<text text-anchor="middle" x="188" y="-1880" font-family="Times,serif" font-size="15.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="188" y="-1865" font-family="Times,serif" font-size="15.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="188" y="-1850" font-family="Times,serif" font-size="15.00" fill="#000000">parseSimpleStmt</text> | |
<text text-anchor="middle" x="188" y="-1835" font-family="Times,serif" font-size="15.00" fill="#000000">140.01MB (1.82%)</text> | |
<text text-anchor="middle" x="188" y="-1820" font-family="Times,serif" font-size="15.00" fill="#000000">of 1405.06MB (18.29%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N3 --> | |
<g id="edge59" class="edge"> | |
<title>N1->N3</title> | |
<g id="a_edge59"><a xlink:title="go/parser.(*parser).parseStmt ... go/parser.(*parser).parseSimpleStmt (1114.01MB)"> | |
<path fill="none" stroke="#b26931" stroke-dasharray="1,5" d="M158.3955,-2085.902C164.6129,-2079.0561 170.2762,-2071.3081 174,-2063 196.3231,-2013.1954 197.2444,-1949.9237 194.2086,-1906.2123"/> | |
<polygon fill="#b26931" stroke="#b26931" points="197.6861,-1905.7877 193.4112,-1896.0936 190.7077,-1906.3377 197.6861,-1905.7877"/> | |
</a> | |
</g> | |
<g id="a_edge59-label"><a xlink:title="go/parser.(*parser).parseStmt ... go/parser.(*parser).parseSimpleStmt (1114.01MB)"> | |
<text text-anchor="middle" x="230.8804" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 1114.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N5 --> | |
<g id="node5" class="node"> | |
<title>N5</title> | |
<g id="a_node5"><a xlink:title="go/parser.(*parser).parseDecl (3714.07MB)"> | |
<polygon fill="#eddad5" stroke="#b22200" points="842.6055,-1874.5 741.3945,-1874.5 741.3945,-1834.5 842.6055,-1834.5 842.6055,-1874.5"/> | |
<text text-anchor="middle" x="792" y="-1864.1" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="792" y="-1856.1" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="792" y="-1848.1" font-family="Times,serif" font-size="8.00" fill="#000000">parseDecl</text> | |
<text text-anchor="middle" x="792" y="-1840.1" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 3714.07MB (48.36%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N5 --> | |
<g id="edge101" class="edge"> | |
<title>N1->N5</title> | |
<g id="a_edge101"><a xlink:title="go/parser.(*parser).parseStmt -> go/parser.(*parser).parseDecl (67.51MB)"> | |
<path fill="none" stroke="#b2b0aa" d="M180.5532,-2114.0283C292.6396,-2111.3002 535.6518,-2101.0475 609,-2063 650.1062,-2041.6772 732.7124,-1934.7459 771.2796,-1882.847"/> | |
<polygon fill="#b2b0aa" stroke="#b2b0aa" points="774.162,-1884.8359 777.2965,-1874.7153 768.5349,-1880.6722 774.162,-1884.8359"/> | |
</a> | |
</g> | |
<g id="a_edge101-label"><a xlink:title="go/parser.(*parser).parseStmt -> go/parser.(*parser).parseDecl (67.51MB)"> | |
<text text-anchor="middle" x="750.3931" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 67.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N12 --> | |
<g id="node12" class="node"> | |
<title>N12</title> | |
<g id="a_node12"><a xlink:title="go/parser.(*parser).next (957.43MB)"> | |
<polygon fill="#ede5de" stroke="#b27643" points="1597.6055,-235 1500.3945,-235 1500.3945,-195 1597.6055,-195 1597.6055,-235"/> | |
<text text-anchor="middle" x="1549" y="-224.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1549" y="-216.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1549" y="-208.6" font-family="Times,serif" font-size="8.00" fill="#000000">next</text> | |
<text text-anchor="middle" x="1549" y="-200.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 957.43MB (12.47%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N12 --> | |
<g id="edge116" class="edge"> | |
<title>N1->N12</title> | |
<g id="a_edge116"><a xlink:title="go/parser.(*parser).parseStmt ... go/parser.(*parser).next (18.57MB)"> | |
<path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M180.4904,-2104.934C268.6075,-2088.5558 431.639,-2054.2068 477,-2017 674.5566,-1854.9564 405.9518,-1644.2028 572,-1450 600.6759,-1416.4619 708.431,-1377.357 749,-1360 788.4162,-1343.1362 797.9434,-1336.3225 840,-1328 877.3287,-1320.6131 1148.9098,-1328.7893 1182,-1310 1238.708,-1277.8 1236.2075,-1246.8948 1262,-1187 1276.2564,-1153.894 1262.5518,-1137.8098 1284.2139,-1109 1293.282,-1096.9397 1304.0879,-1103.1761 1313,-1091 1343.8309,-1048.8773 1416.3997,-686.3974 1430,-636 1469.7162,-488.8271 1520.2986,-313.6608 1540.2995,-244.8478"/> | |
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="1543.6998,-245.689 1543.1323,-235.1094 1536.9784,-243.7337 1543.6998,-245.689"/> | |
</a> | |
</g> | |
<g id="a_edge116-label"><a xlink:title="go/parser.(*parser).parseStmt ... go/parser.(*parser).next (18.57MB)"> | |
<text text-anchor="middle" x="1312.3931" y="-1143.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 18.57MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22 --> | |
<g id="node22" class="node"> | |
<title>N22</title> | |
<g id="a_node22"><a xlink:title="go/parser.(*parser).parseIfStmt (1109.20MB)"> | |
<polygon fill="#ede3dc" stroke="#b26a31" points="529.0703,-1891 384.9297,-1891 384.9297,-1818 529.0703,-1818 529.0703,-1891"/> | |
<text text-anchor="middle" x="457" y="-1876.6" font-family="Times,serif" font-size="13.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="457" y="-1863.6" font-family="Times,serif" font-size="13.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="457" y="-1850.6" font-family="Times,serif" font-size="13.00" fill="#000000">parseIfStmt</text> | |
<text text-anchor="middle" x="457" y="-1837.6" font-family="Times,serif" font-size="13.00" fill="#000000">66MB (0.86%)</text> | |
<text text-anchor="middle" x="457" y="-1824.6" font-family="Times,serif" font-size="13.00" fill="#000000">of 1109.20MB (14.44%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N22 --> | |
<g id="edge60" class="edge"> | |
<title>N1->N22</title> | |
<g id="a_edge60"><a xlink:title="go/parser.(*parser).parseStmt -> go/parser.(*parser).parseIfStmt (1109.20MB)"> | |
<path fill="none" stroke="#b26a31" d="M180.7606,-2099.6721C228.1379,-2084.7833 294.7086,-2058.2985 341,-2017 378.9127,-1983.1765 411.4391,-1934.8121 432.3181,-1899.6469"/> | |
<polygon fill="#b26a31" stroke="#b26a31" points="435.3435,-1901.4067 437.3716,-1891.0078 429.3013,-1897.8723 435.3435,-1901.4067"/> | |
</a> | |
</g> | |
<g id="a_edge60-label"><a xlink:title="go/parser.(*parser).parseStmt -> go/parser.(*parser).parseIfStmt (1109.20MB)"> | |
<text text-anchor="middle" x="438.1367" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 1109.20MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N28 --> | |
<g id="node28" class="node"> | |
<title>N28</title> | |
<g id="a_node28"><a xlink:title="go/parser.(*parser).expectSemi (452.92MB)"> | |
<polygon fill="#edeae6" stroke="#b29b7d" points="1438.6055,-1293.5 1345.3945,-1293.5 1345.3945,-1253.5 1438.6055,-1253.5 1438.6055,-1293.5"/> | |
<text text-anchor="middle" x="1392" y="-1283.1" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1392" y="-1275.1" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1392" y="-1267.1" font-family="Times,serif" font-size="8.00" fill="#000000">expectSemi</text> | |
<text text-anchor="middle" x="1392" y="-1259.1" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 452.92MB (5.90%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N28 --> | |
<g id="edge104" class="edge"> | |
<title>N1->N28</title> | |
<g id="a_edge104"><a xlink:title="go/parser.(*parser).parseStmt ... go/parser.(*parser).expectSemi (53.62MB)"> | |
<path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M180.608,-2112.4777C295.6831,-2106.8513 545.2133,-2091.4751 571,-2063 701.091,-1919.3461 485.524,-1797.2019 578.2139,-1627 680.226,-1439.6802 781.9445,-1446.3049 977,-1360 1031.0194,-1336.0984 1047.8474,-1338.376 1106,-1328 1177.7516,-1315.1976 1197.5569,-1324.4248 1269,-1310 1291.0531,-1305.5473 1314.8513,-1298.9264 1335.5846,-1292.5413"/> | |
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="1336.6884,-1295.8633 1345.1856,-1289.5349 1334.5966,-1289.1832 1336.6884,-1295.8633"/> | |
</a> | |
</g> | |
<g id="a_edge104-label"><a xlink:title="go/parser.(*parser).parseStmt ... go/parser.(*parser).expectSemi (53.62MB)"> | |
<text text-anchor="middle" x="607.3931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 53.62MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N2 --> | |
<g id="node2" class="node"> | |
<title>N2</title> | |
<g id="a_node2"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.parseFiles.func2 (3989.80MB)"> | |
<polygon fill="#edd9d5" stroke="#b21f00" points="1118.4429,-2376 933.5571,-2376 933.5571,-2305 1118.4429,-2305 1118.4429,-2376"/> | |
<text text-anchor="middle" x="1026" y="-2364.8" font-family="Times,serif" font-size="9.00" fill="#000000">github</text> | |
<text text-anchor="middle" x="1026" y="-2355.8" font-family="Times,serif" font-size="9.00" fill="#000000">com/sourcegraph/go-langserver/vendor/golang</text> | |
<text text-anchor="middle" x="1026" y="-2346.8" font-family="Times,serif" font-size="9.00" fill="#000000">org/x/tools/go/loader</text> | |
<text text-anchor="middle" x="1026" y="-2337.8" font-family="Times,serif" font-size="9.00" fill="#000000">parseFiles</text> | |
<text text-anchor="middle" x="1026" y="-2328.8" font-family="Times,serif" font-size="9.00" fill="#000000">func2</text> | |
<text text-anchor="middle" x="1026" y="-2319.8" font-family="Times,serif" font-size="9.00" fill="#000000">0.50MB (0.0065%)</text> | |
<text text-anchor="middle" x="1026" y="-2310.8" font-family="Times,serif" font-size="9.00" fill="#000000">of 3989.80MB (51.95%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N11 --> | |
<g id="node11" class="node"> | |
<title>N11</title> | |
<g id="a_node11"><a xlink:title="go/parser.ParseFile (4285.48MB)"> | |
<polygon fill="#edd9d5" stroke="#b21c00" points="1093.1586,-2255 958.8414,-2255 958.8414,-2199 1093.1586,-2199 1093.1586,-2255"/> | |
<text text-anchor="middle" x="1026" y="-2241.4" font-family="Times,serif" font-size="12.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1026" y="-2229.4" font-family="Times,serif" font-size="12.00" fill="#000000">ParseFile</text> | |
<text text-anchor="middle" x="1026" y="-2217.4" font-family="Times,serif" font-size="12.00" fill="#000000">32.01MB (0.42%)</text> | |
<text text-anchor="middle" x="1026" y="-2205.4" font-family="Times,serif" font-size="12.00" fill="#000000">of 4285.48MB (55.80%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N2->N11 --> | |
<g id="edge46" class="edge"> | |
<title>N2->N11</title> | |
<g id="a_edge46"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.parseFiles.func2 -> go/parser.ParseFile (3971.30MB)"> | |
<path fill="none" stroke="#b22000" stroke-width="3" d="M1026,-2304.8993C1026,-2292.4049 1026,-2278.3145 1026,-2265.5867"/> | |
<polygon fill="#b22000" stroke="#b22000" stroke-width="3" points="1029.5001,-2265.2807 1026,-2255.2807 1022.5001,-2265.2807 1029.5001,-2265.2807"/> | |
</a> | |
</g> | |
<g id="a_edge46-label"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.parseFiles.func2 -> go/parser.ParseFile (3971.30MB)"> | |
<text text-anchor="middle" x="1061.3931" y="-2275.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 3971.30MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3->N1 --> | |
<g id="edge105" class="edge"> | |
<title>N3->N1</title> | |
<g id="a_edge105"><a xlink:title="go/parser.(*parser).parseSimpleStmt -> go/parser.(*parser).parseStmt (46.05MB)"> | |
<path fill="none" stroke="#b2b1ad" d="M236.7772,-1896.012C250.1526,-1910.3295 262.9124,-1927.4714 270,-1946 281.274,-1975.4729 284.8897,-1989.1783 270,-2017 252.8835,-2048.9825 220.2089,-2072.33 190.0041,-2088.1951"/> | |
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="188.0774,-2085.2471 180.7295,-2092.8798 191.2335,-2091.4953 188.0774,-2085.2471"/> | |
</a> | |
</g> | |
<g id="a_edge105-label"><a xlink:title="go/parser.(*parser).parseSimpleStmt -> go/parser.(*parser).parseStmt (46.05MB)"> | |
<text text-anchor="middle" x="308.3931" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 46.05MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN3_0 --> | |
<g id="NN3_0" class="node"> | |
<title>NN3_0</title> | |
<g id="a_NN3_0"><a xlink:title="118.01MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="288,-1729 238,-1729 234,-1725 234,-1693 284,-1693 288,-1697 288,-1729"/> | |
<polyline fill="none" stroke="#000000" points="284,-1725 234,-1725 "/> | |
<polyline fill="none" stroke="#000000" points="284,-1725 284,-1693 "/> | |
<polyline fill="none" stroke="#000000" points="284,-1725 288,-1729 "/> | |
<text text-anchor="middle" x="261" y="-1708.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B..80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3->NN3_0 --> | |
<g id="edge2" class="edge"> | |
<title>N3->NN3_0</title> | |
<g id="a_edge2"><a xlink:title="118.01MB"> | |
<path fill="none" stroke="#000000" d="M227.542,-1812.9685C231.8208,-1807.2061 235.7812,-1801.1469 239,-1795 248.064,-1777.6907 253.5892,-1756.377 256.8356,-1739.5504"/> | |
<polygon fill="#000000" stroke="#000000" points="260.3659,-1739.6837 258.6541,-1729.228 253.4721,-1738.4691 260.3659,-1739.6837"/> | |
</a> | |
</g> | |
<g id="a_edge2-label"><a xlink:title="118.01MB"> | |
<text text-anchor="middle" x="276.6367" y="-1783.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 118.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN3_1 --> | |
<g id="NN3_1" class="node"> | |
<title>NN3_1</title> | |
<g id="a_NN3_1"><a xlink:title="14.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="135,-1729 85,-1729 81,-1725 81,-1693 131,-1693 135,-1697 135,-1729"/> | |
<polyline fill="none" stroke="#000000" points="131,-1725 81,-1725 "/> | |
<polyline fill="none" stroke="#000000" points="131,-1725 131,-1693 "/> | |
<polyline fill="none" stroke="#000000" points="131,-1725 135,-1729 "/> | |
<text text-anchor="middle" x="108" y="-1708.6" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3->NN3_1 --> | |
<g id="edge3" class="edge"> | |
<title>N3->NN3_1</title> | |
<g id="a_edge3"><a xlink:title="14.50MB"> | |
<path fill="none" stroke="#000000" d="M139.6825,-1812.7395C134.9788,-1807.1418 130.6772,-1801.1846 127.2139,-1795 117.5895,-1777.8132 112.7826,-1756.0841 110.3836,-1739.0321"/> | |
<polygon fill="#000000" stroke="#000000" points="113.8578,-1738.6076 109.1795,-1729.1016 106.9087,-1739.4502 113.8578,-1738.6076"/> | |
</a> | |
</g> | |
<g id="a_edge3-label"><a xlink:title="14.50MB"> | |
<text text-anchor="middle" x="156.3931" y="-1783.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 14.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN3_2 --> | |
<g id="NN3_2" class="node"> | |
<title>NN3_2</title> | |
<g id="a_NN3_2"><a xlink:title="7.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="215,-1729 165,-1729 161,-1725 161,-1693 211,-1693 215,-1697 215,-1729"/> | |
<polyline fill="none" stroke="#000000" points="211,-1725 161,-1725 "/> | |
<polyline fill="none" stroke="#000000" points="211,-1725 211,-1693 "/> | |
<polyline fill="none" stroke="#000000" points="211,-1725 215,-1729 "/> | |
<text text-anchor="middle" x="188" y="-1708.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3->NN3_2 --> | |
<g id="edge4" class="edge"> | |
<title>N3->NN3_2</title> | |
<g id="a_edge4"><a xlink:title="7.50MB"> | |
<path fill="none" stroke="#000000" d="M188,-1812.9939C188,-1789.3097 188,-1760.2441 188,-1739.2083"/> | |
<polygon fill="#000000" stroke="#000000" points="191.5001,-1739.0109 188,-1729.0109 184.5001,-1739.011 191.5001,-1739.0109"/> | |
</a> | |
</g> | |
<g id="a_edge4-label"><a xlink:title="7.50MB"> | |
<text text-anchor="middle" x="212.8931" y="-1783.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 7.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3->N12 --> | |
<g id="edge120" class="edge"> | |
<title>N3->N12</title> | |
<g id="a_edge120"><a xlink:title="go/parser.(*parser).parseSimpleStmt -> go/parser.(*parser).next (10.50MB)"> | |
<path fill="none" stroke="#b2b2b1" d="M270.4116,-1830.9011C286.8905,-1822.2942 302.1435,-1810.662 312,-1795 315.3141,-1789.7338 312.0809,-1787.2217 312,-1781 307.3742,-1425.3765 273.5157,-1336.1077 293.2139,-981 301.7588,-826.9569 259.239,-398.3978 370,-291 410.6072,-251.6258 1256.7792,-223.6742 1489.9606,-216.6983"/> | |
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="1490.3811,-220.1875 1500.2726,-216.3916 1490.1729,-213.1906 1490.3811,-220.1875"/> | |
</a> | |
</g> | |
<g id="a_edge120-label"><a xlink:title="go/parser.(*parser).parseSimpleStmt -> go/parser.(*parser).next (10.50MB)"> | |
<text text-anchor="middle" x="322.3931" y="-1015.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 10.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N20 --> | |
<g id="node20" class="node"> | |
<title>N20</title> | |
<g id="a_node20"><a xlink:title="go/parser.(*parser).parseRhsList (1115.45MB)"> | |
<polygon fill="#ede3db" stroke="#b26930" points="1173.0207,-1293.5 1072.9793,-1293.5 1072.9793,-1253.5 1173.0207,-1253.5 1173.0207,-1293.5"/> | |
<text text-anchor="middle" x="1123" y="-1283.1" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1123" y="-1275.1" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1123" y="-1267.1" font-family="Times,serif" font-size="8.00" fill="#000000">parseRhsList</text> | |
<text text-anchor="middle" x="1123" y="-1259.1" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 1115.45MB (14.52%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3->N20 --> | |
<g id="edge74" class="edge"> | |
<title>N3->N20</title> | |
<g id="a_edge74"><a xlink:title="go/parser.(*parser).parseSimpleStmt -> go/parser.(*parser).parseRhsList (499.27MB)"> | |
<path fill="none" stroke="#b29878" d="M270.4391,-1840.3025C299.7771,-1831.5731 330.965,-1817.5343 353,-1795 436.2485,-1709.8652 379.8479,-1644.7866 438.2139,-1541 464.1533,-1494.8745 472.8781,-1482.0337 515,-1450 684.4245,-1321.1525 945.4436,-1286.242 1062.5294,-1276.88"/> | |
<polygon fill="#b29878" stroke="#b29878" points="1063.0267,-1280.3523 1072.7309,-1276.1003 1062.4932,-1273.3727 1063.0267,-1280.3523"/> | |
</a> | |
</g> | |
<g id="a_edge74-label"><a xlink:title="go/parser.(*parser).parseSimpleStmt -> go/parser.(*parser).parseRhsList (499.27MB)"> | |
<text text-anchor="middle" x="470.8931" y="-1543.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 499.27MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N4 --> | |
<g id="node4" class="node"> | |
<title>N4</title> | |
<g id="a_node4"><a xlink:title="go/types.(*Checker).recordTypeAndValue (845.99MB)"> | |
<polygon fill="#ede6e0" stroke="#b27f50" points="1937.4024,-1763 1716.5976,-1763 1716.5976,-1659 1937.4024,-1659 1937.4024,-1763"/> | |
<text text-anchor="middle" x="1827" y="-1739.8" font-family="Times,serif" font-size="24.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1827" y="-1715.8" font-family="Times,serif" font-size="24.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1827" y="-1691.8" font-family="Times,serif" font-size="24.00" fill="#000000">recordTypeAndValue</text> | |
<text text-anchor="middle" x="1827" y="-1667.8" font-family="Times,serif" font-size="24.00" fill="#000000">845.99MB (11.01%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN4_0 --> | |
<g id="NN4_0" class="node"> | |
<title>NN4_0</title> | |
<g id="a_NN4_0"><a xlink:title="339.09MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1767,-1609 1717,-1609 1713,-1605 1713,-1573 1763,-1573 1767,-1577 1767,-1609"/> | |
<polyline fill="none" stroke="#000000" points="1763,-1605 1713,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="1763,-1605 1763,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="1763,-1605 1767,-1609 "/> | |
<text text-anchor="middle" x="1740" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">3.85MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N4->NN4_0 --> | |
<g id="edge5" class="edge"> | |
<title>N4->NN4_0</title> | |
<g id="a_edge5"><a xlink:title="339.09MB"> | |
<path fill="none" stroke="#000000" d="M1772.4372,-1658.9958C1767.6392,-1653.1785 1763.1277,-1647.1317 1759.2139,-1641 1754.9,-1634.2416 1751.3124,-1626.3641 1748.4513,-1618.8879"/> | |
<polygon fill="#000000" stroke="#000000" points="1751.7379,-1617.6833 1745.1086,-1609.4188 1745.1371,-1620.0136 1751.7379,-1617.6833"/> | |
</a> | |
</g> | |
<g id="a_edge5-label"><a xlink:title="339.09MB"> | |
<text text-anchor="middle" x="1790.8931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 339.09MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN4_1 --> | |
<g id="NN4_1" class="node"> | |
<title>NN4_1</title> | |
<g id="a_NN4_1"><a xlink:title="153.76MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1854,-1609 1804,-1609 1800,-1605 1800,-1573 1850,-1573 1854,-1577 1854,-1609"/> | |
<polyline fill="none" stroke="#000000" points="1850,-1605 1800,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="1850,-1605 1850,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="1850,-1605 1854,-1609 "/> | |
<text text-anchor="middle" x="1827" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">1.93MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N4->NN4_1 --> | |
<g id="edge6" class="edge"> | |
<title>N4->NN4_1</title> | |
<g id="a_edge6"><a xlink:title="153.76MB"> | |
<path fill="none" stroke="#000000" d="M1827,-1658.7153C1827,-1645.1756 1827,-1631.1028 1827,-1619.3171"/> | |
<polygon fill="#000000" stroke="#000000" points="1830.5001,-1619.2172 1827,-1609.2173 1823.5001,-1619.2173 1830.5001,-1619.2172"/> | |
</a> | |
</g> | |
<g id="a_edge6-label"><a xlink:title="153.76MB"> | |
<text text-anchor="middle" x="1858.8931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 153.76MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN4_2 --> | |
<g id="NN4_2" class="node"> | |
<title>NN4_2</title> | |
<g id="a_NN4_2"><a xlink:title="47.54MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1941,-1609 1891,-1609 1887,-1605 1887,-1573 1937,-1573 1941,-1577 1941,-1609"/> | |
<polyline fill="none" stroke="#000000" points="1937,-1605 1887,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="1937,-1605 1937,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="1937,-1605 1941,-1609 "/> | |
<text text-anchor="middle" x="1914" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">993.40kB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N4->NN4_2 --> | |
<g id="edge7" class="edge"> | |
<title>N4->NN4_2</title> | |
<g id="a_edge7"><a xlink:title="47.54MB"> | |
<path fill="none" stroke="#000000" d="M1878.9802,-1658.6379C1883.6485,-1652.8917 1888.0833,-1646.9593 1892,-1641 1896.4909,-1634.167 1900.4522,-1626.2651 1903.7313,-1618.7894"/> | |
<polygon fill="#000000" stroke="#000000" points="1907.0544,-1619.912 1907.6361,-1609.3332 1900.5843,-1617.2403 1907.0544,-1619.912"/> | |
</a> | |
</g> | |
<g id="a_edge7-label"><a xlink:title="47.54MB"> | |
<text text-anchor="middle" x="1927.3931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 47.54MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7 --> | |
<g id="node7" class="node"> | |
<title>N7</title> | |
<g id="a_node7"><a xlink:title="go/parser.(*parser).parseFuncDecl (2906.87MB)"> | |
<polygon fill="#eddbd5" stroke="#b22d00" points="859.1586,-1745 724.8414,-1745 724.8414,-1677 859.1586,-1677 859.1586,-1745"/> | |
<text text-anchor="middle" x="792" y="-1731.4" font-family="Times,serif" font-size="12.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="792" y="-1719.4" font-family="Times,serif" font-size="12.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="792" y="-1707.4" font-family="Times,serif" font-size="12.00" fill="#000000">parseFuncDecl</text> | |
<text text-anchor="middle" x="792" y="-1695.4" font-family="Times,serif" font-size="12.00" fill="#000000">44.50MB (0.58%)</text> | |
<text text-anchor="middle" x="792" y="-1683.4" font-family="Times,serif" font-size="12.00" fill="#000000">of 2906.87MB (37.85%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N5->N7 --> | |
<g id="edge50" class="edge"> | |
<title>N5->N7</title> | |
<g id="a_edge50"><a xlink:title="go/parser.(*parser).parseDecl -> go/parser.(*parser).parseFuncDecl (2896.37MB)"> | |
<path fill="none" stroke="#b22d00" stroke-width="2" d="M792,-1834.2443C792,-1813.8513 792,-1781.7283 792,-1755.3904"/> | |
<polygon fill="#b22d00" stroke="#b22d00" stroke-width="2" points="795.5001,-1755.2486 792,-1745.2486 788.5001,-1755.2486 795.5001,-1755.2486"/> | |
</a> | |
</g> | |
<g id="a_edge50-label"><a xlink:title="go/parser.(*parser).parseDecl -> go/parser.(*parser).parseFuncDecl (2896.37MB)"> | |
<text text-anchor="middle" x="827.3931" y="-1783.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 2896.37MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15 --> | |
<g id="node15" class="node"> | |
<title>N15</title> | |
<g id="a_node15"><a xlink:title="go/parser.(*parser).parseGenDecl (1021.73MB)"> | |
<polygon fill="#ede4dd" stroke="#b2713b" points="1543.0471,-1747.5 1398.9529,-1747.5 1398.9529,-1674.5 1543.0471,-1674.5 1543.0471,-1747.5"/> | |
<text text-anchor="middle" x="1471" y="-1733.1" font-family="Times,serif" font-size="13.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1471" y="-1720.1" font-family="Times,serif" font-size="13.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1471" y="-1707.1" font-family="Times,serif" font-size="13.00" fill="#000000">parseGenDecl</text> | |
<text text-anchor="middle" x="1471" y="-1694.1" font-family="Times,serif" font-size="13.00" fill="#000000">58.06MB (0.76%)</text> | |
<text text-anchor="middle" x="1471" y="-1681.1" font-family="Times,serif" font-size="13.00" fill="#000000">of 1021.73MB (13.30%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N5->N15 --> | |
<g id="edge63" class="edge"> | |
<title>N5->N15</title> | |
<g id="a_edge63"><a xlink:title="go/parser.(*parser).parseDecl -> go/parser.(*parser).parseGenDecl (884.72MB)"> | |
<path fill="none" stroke="#b27c4b" d="M842.7577,-1843.7729C959.2654,-1819.1501 1246.7389,-1758.3954 1388.8133,-1728.3694"/> | |
<polygon fill="#b27c4b" stroke="#b27c4b" points="1389.7269,-1731.7537 1398.787,-1726.2615 1388.2794,-1724.905 1389.7269,-1731.7537"/> | |
</a> | |
</g> | |
<g id="a_edge63-label"><a xlink:title="go/parser.(*parser).parseDecl -> go/parser.(*parser).parseGenDecl (884.72MB)"> | |
<text text-anchor="middle" x="1162.8931" y="-1783.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 884.72MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N6 --> | |
<g id="node6" class="node"> | |
<title>N6</title> | |
<g id="a_node6"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).startLoad.func1 (3201.23MB)"> | |
<polygon fill="#eddad5" stroke="#b22900" points="971.7268,-2767 806.2732,-2767 806.2732,-2703 971.7268,-2703 971.7268,-2767"/> | |
<text text-anchor="middle" x="889" y="-2756.6" font-family="Times,serif" font-size="8.00" fill="#000000">github</text> | |
<text text-anchor="middle" x="889" y="-2748.6" font-family="Times,serif" font-size="8.00" fill="#000000">com/sourcegraph/go-langserver/vendor/golang</text> | |
<text text-anchor="middle" x="889" y="-2740.6" font-family="Times,serif" font-size="8.00" fill="#000000">org/x/tools/go/loader</text> | |
<text text-anchor="middle" x="889" y="-2732.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*importer)</text> | |
<text text-anchor="middle" x="889" y="-2724.6" font-family="Times,serif" font-size="8.00" fill="#000000">startLoad</text> | |
<text text-anchor="middle" x="889" y="-2716.6" font-family="Times,serif" font-size="8.00" fill="#000000">func1</text> | |
<text text-anchor="middle" x="889" y="-2708.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 3201.23MB (41.68%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N9 --> | |
<g id="node9" class="node"> | |
<title>N9</title> | |
<g id="a_node9"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles (3243.40MB)"> | |
<polygon fill="#eddad5" stroke="#b22800" points="971.7268,-2625 806.2732,-2625 806.2732,-2569 971.7268,-2569 971.7268,-2625"/> | |
<text text-anchor="middle" x="889" y="-2614.6" font-family="Times,serif" font-size="8.00" fill="#000000">github</text> | |
<text text-anchor="middle" x="889" y="-2606.6" font-family="Times,serif" font-size="8.00" fill="#000000">com/sourcegraph/go-langserver/vendor/golang</text> | |
<text text-anchor="middle" x="889" y="-2598.6" font-family="Times,serif" font-size="8.00" fill="#000000">org/x/tools/go/loader</text> | |
<text text-anchor="middle" x="889" y="-2590.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*importer)</text> | |
<text text-anchor="middle" x="889" y="-2582.6" font-family="Times,serif" font-size="8.00" fill="#000000">addFiles</text> | |
<text text-anchor="middle" x="889" y="-2574.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 3243.40MB (42.23%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N6->N9 --> | |
<g id="edge49" class="edge"> | |
<title>N6->N9</title> | |
<g id="a_edge49"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).startLoad.func1 ... github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles (3177.21MB)"> | |
<path fill="none" stroke="#b22900" stroke-width="3" stroke-dasharray="1,5" d="M889,-2702.9932C889,-2682.7392 889,-2656.4477 889,-2635.1173"/> | |
<polygon fill="#b22900" stroke="#b22900" stroke-width="3" points="892.5001,-2635.0927 889,-2625.0927 885.5001,-2635.0927 892.5001,-2635.0927"/> | |
</a> | |
</g> | |
<g id="a_edge49-label"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).startLoad.func1 ... github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles (3177.21MB)"> | |
<text text-anchor="middle" x="924.3931" y="-2645.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 3177.21MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN7_0 --> | |
<g id="NN7_0" class="node"> | |
<title>NN7_0</title> | |
<g id="a_NN7_0"><a xlink:title="27MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="794,-1609 744,-1609 740,-1605 740,-1573 790,-1573 794,-1577 794,-1609"/> | |
<polyline fill="none" stroke="#000000" points="790,-1605 740,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="790,-1605 790,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="790,-1605 794,-1609 "/> | |
<text text-anchor="middle" x="767" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">48B..80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->NN7_0 --> | |
<g id="edge8" class="edge"> | |
<title>N7->NN7_0</title> | |
<g id="a_edge8"><a xlink:title="27MB"> | |
<path fill="none" stroke="#000000" d="M784.9029,-1676.9338C781.1013,-1658.6863 776.4742,-1636.4761 772.8764,-1619.2069"/> | |
<polygon fill="#000000" stroke="#000000" points="776.252,-1618.2484 770.7859,-1609.1724 769.3991,-1619.6761 776.252,-1618.2484"/> | |
</a> | |
</g> | |
<g id="a_edge8-label"><a xlink:title="27MB"> | |
<text text-anchor="middle" x="797.6431" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 27MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN7_1 --> | |
<g id="NN7_1" class="node"> | |
<title>NN7_1</title> | |
<g id="a_NN7_1"><a xlink:title="17.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="866,-1609 816,-1609 812,-1605 812,-1573 862,-1573 866,-1577 866,-1609"/> | |
<polyline fill="none" stroke="#000000" points="862,-1605 812,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="862,-1605 862,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="862,-1605 866,-1609 "/> | |
<text text-anchor="middle" x="839" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->NN7_1 --> | |
<g id="edge9" class="edge"> | |
<title>N7->NN7_1</title> | |
<g id="a_edge9"><a xlink:title="17.50MB"> | |
<path fill="none" stroke="#000000" d="M805.3426,-1676.9338C812.557,-1658.5142 821.3528,-1636.0567 828.1432,-1618.7194"/> | |
<polygon fill="#000000" stroke="#000000" points="831.4944,-1619.7602 831.8825,-1609.1724 824.9765,-1617.2073 831.4944,-1619.7602"/> | |
</a> | |
</g> | |
<g id="a_edge9-label"><a xlink:title="17.50MB"> | |
<text text-anchor="middle" x="852.3931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 17.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N17 --> | |
<g id="node17" class="node"> | |
<title>N17</title> | |
<g id="a_node17"><a xlink:title="go/parser.(*parser).parseIdent (716.66MB)"> | |
<polygon fill="#ede7e2" stroke="#b2895f" points="1260.4286,-500 1039.5714,-500 1039.5714,-377 1260.4286,-377 1260.4286,-500"/> | |
<text text-anchor="middle" x="1150" y="-477.6" font-family="Times,serif" font-size="23.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1150" y="-454.6" font-family="Times,serif" font-size="23.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1150" y="-431.6" font-family="Times,serif" font-size="23.00" fill="#000000">parseIdent</text> | |
<text text-anchor="middle" x="1150" y="-408.6" font-family="Times,serif" font-size="23.00" fill="#000000">691.02MB (9.00%)</text> | |
<text text-anchor="middle" x="1150" y="-385.6" font-family="Times,serif" font-size="23.00" fill="#000000">of 716.66MB (9.33%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->N17 --> | |
<g id="edge117" class="edge"> | |
<title>N7->N17</title> | |
<g id="a_edge117"><a xlink:title="go/parser.(*parser).parseFuncDecl -> go/parser.(*parser).parseIdent (16MB)"> | |
<path fill="none" stroke="#b2b2b0" d="M761.7198,-1676.723C741.2656,-1649.3257 719.8581,-1609.5851 731,-1573 764.2188,-1463.9239 779.6522,-1424.028 874,-1360 929.6855,-1322.2097 955.5887,-1338.8867 1022,-1328 1057.3086,-1322.2119 1154.4861,-1332.8732 1182,-1310 1233.8943,-1266.8586 1344.6746,-794.9468 1359,-729 1375.9827,-650.8208 1420.3592,-617.8682 1378,-550 1353.7074,-511.0782 1311.4568,-485.3722 1269.8756,-468.5704"/> | |
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="1271.0493,-465.2716 1260.4607,-464.9092 1268.5122,-471.7956 1271.0493,-465.2716"/> | |
</a> | |
</g> | |
<g id="a_edge117-label"><a xlink:title="go/parser.(*parser).parseFuncDecl -> go/parser.(*parser).parseIdent (16MB)"> | |
<text text-anchor="middle" x="1289.6431" y="-1079.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 16MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->N28 --> | |
<g id="edge88" class="edge"> | |
<title>N7->N28</title> | |
<g id="a_edge88"><a xlink:title="go/parser.(*parser).parseFuncDecl -> go/parser.(*parser).expectSemi (140.16MB)"> | |
<path fill="none" stroke="#b2ada2" d="M842.1699,-1676.8854C856.6149,-1666.1154 871.9759,-1653.6948 885,-1641 1012.2949,-1516.9233 978.9047,-1414.8589 1134,-1328 1186.8128,-1298.4229 1209.8053,-1322.6485 1269,-1310 1291.0955,-1305.2787 1314.9921,-1298.5684 1335.7936,-1292.1865"/> | |
<polygon fill="#b2ada2" stroke="#b2ada2" points="1336.9166,-1295.5026 1345.4242,-1289.1883 1334.8358,-1288.819 1336.9166,-1295.5026"/> | |
</a> | |
</g> | |
<g id="a_edge88-label"><a xlink:title="go/parser.(*parser).parseFuncDecl -> go/parser.(*parser).expectSemi (140.16MB)"> | |
<text text-anchor="middle" x="1040.8931" y="-1482.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 140.16MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N33 --> | |
<g id="node33" class="node"> | |
<title>N33</title> | |
<g id="a_node33"><a xlink:title="go/parser.(*parser).parseBody (2244.48MB)"> | |
<polygon fill="#eddcd5" stroke="#b23700" points="711.2702,-470 586.7298,-470 586.7298,-407 711.2702,-407 711.2702,-470"/> | |
<text text-anchor="middle" x="649" y="-457.2" font-family="Times,serif" font-size="11.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="649" y="-446.2" font-family="Times,serif" font-size="11.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="649" y="-435.2" font-family="Times,serif" font-size="11.00" fill="#000000">parseBody</text> | |
<text text-anchor="middle" x="649" y="-424.2" font-family="Times,serif" font-size="11.00" fill="#000000">24MB (0.31%)</text> | |
<text text-anchor="middle" x="649" y="-413.2" font-family="Times,serif" font-size="11.00" fill="#000000">of 2244.48MB (29.22%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->N33 --> | |
<g id="edge51" class="edge"> | |
<title>N7->N33</title> | |
<g id="a_edge51"><a xlink:title="go/parser.(*parser).parseFuncDecl -> go/parser.(*parser).parseBody (2215.46MB)"> | |
<path fill="none" stroke="#b23700" stroke-width="2" d="M724.6873,-1684.366C687.5975,-1664.8104 649,-1634.1047 649,-1591 649,-1591 649,-1591 649,-568 649,-538.6562 649,-505.5723 649,-480.1893"/> | |
<polygon fill="#b23700" stroke="#b23700" stroke-width="2" points="652.5001,-480.1661 649,-470.1661 645.5001,-480.1662 652.5001,-480.1661"/> | |
</a> | |
</g> | |
<g id="a_edge51-label"><a xlink:title="go/parser.(*parser).parseFuncDecl -> go/parser.(*parser).parseBody (2215.46MB)"> | |
<text text-anchor="middle" x="684.3931" y="-1079.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 2215.46MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8 --> | |
<g id="node8" class="node"> | |
<title>N8</title> | |
<g id="a_node8"><a xlink:title="go/parser.(*parser).parseStmtList (2193.34MB)"> | |
<polygon fill="#eddcd5" stroke="#b23700" points="176.4352,-254 21.5648,-254 21.5648,-176 176.4352,-176 176.4352,-254"/> | |
<text text-anchor="middle" x="99" y="-238.8" font-family="Times,serif" font-size="14.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="99" y="-224.8" font-family="Times,serif" font-size="14.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="99" y="-210.8" font-family="Times,serif" font-size="14.00" fill="#000000">parseStmtList</text> | |
<text text-anchor="middle" x="99" y="-196.8" font-family="Times,serif" font-size="14.00" fill="#000000">98.51MB (1.28%)</text> | |
<text text-anchor="middle" x="99" y="-182.8" font-family="Times,serif" font-size="14.00" fill="#000000">of 2193.34MB (28.56%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8->N1 --> | |
<g id="edge53" class="edge"> | |
<title>N8->N1</title> | |
<g id="a_edge53"><a xlink:title="go/parser.(*parser).parseStmtList -> go/parser.(*parser).parseStmt (2147.33MB)"> | |
<path fill="none" stroke="#b23800" stroke-width="2" d="M70.1287,-254.1619C60.8866,-270.315 53,-289.7412 53,-309 53,-1981.5 53,-1981.5 53,-1981.5 53,-2017.0032 72.6584,-2052.3688 91.1397,-2077.7721"/> | |
<polygon fill="#b23800" stroke="#b23800" stroke-width="2" points="88.5191,-2080.1103 97.3321,-2085.991 94.1099,-2075.898 88.5191,-2080.1103"/> | |
</a> | |
</g> | |
<g id="a_edge53-label"><a xlink:title="go/parser.(*parser).parseStmtList -> go/parser.(*parser).parseStmt (2147.33MB)"> | |
<text text-anchor="middle" x="88.3931" y="-1143.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 2147.33MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN8_0 --> | |
<g id="NN8_0" class="node"> | |
<title>NN8_0</title> | |
<g id="a_NN8_0"><a xlink:title="21MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="54,-124 4,-124 0,-120 0,-88 50,-88 54,-92 54,-124"/> | |
<polyline fill="none" stroke="#000000" points="50,-120 0,-120 "/> | |
<polyline fill="none" stroke="#000000" points="50,-120 50,-88 "/> | |
<polyline fill="none" stroke="#000000" points="50,-120 54,-124 "/> | |
<text text-anchor="middle" x="27" y="-103.6" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8->NN8_0 --> | |
<g id="edge10" class="edge"> | |
<title>N8->NN8_0</title> | |
<g id="a_edge10"><a xlink:title="21MB"> | |
<path fill="none" stroke="#000000" d="M68.2003,-175.9799C63.8668,-170.0545 59.5776,-163.936 55.7139,-158 50.5637,-150.0876 45.425,-141.1844 40.9482,-133.0108"/> | |
<polygon fill="#000000" stroke="#000000" points="44.0234,-131.3395 36.2096,-124.1844 37.856,-134.6506 44.0234,-131.3395"/> | |
</a> | |
</g> | |
<g id="a_edge10-label"><a xlink:title="21MB"> | |
<text text-anchor="middle" x="75.6431" y="-146.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 21MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN8_1 --> | |
<g id="NN8_1" class="node"> | |
<title>NN8_1</title> | |
<g id="a_NN8_1"><a xlink:title="19MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="126,-124 76,-124 72,-120 72,-88 122,-88 126,-92 126,-124"/> | |
<polyline fill="none" stroke="#000000" points="122,-120 72,-120 "/> | |
<polyline fill="none" stroke="#000000" points="122,-120 122,-88 "/> | |
<polyline fill="none" stroke="#000000" points="122,-120 126,-124 "/> | |
<text text-anchor="middle" x="99" y="-103.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B..80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8->NN8_1 --> | |
<g id="edge11" class="edge"> | |
<title>N8->NN8_1</title> | |
<g id="a_edge11"><a xlink:title="19MB"> | |
<path fill="none" stroke="#000000" d="M99,-175.9564C99,-162.1164 99,-146.8268 99,-134.0804"/> | |
<polygon fill="#000000" stroke="#000000" points="102.5001,-134.0593 99,-124.0593 95.5001,-134.0594 102.5001,-134.0593"/> | |
</a> | |
</g> | |
<g id="a_edge11-label"><a xlink:title="19MB"> | |
<text text-anchor="middle" x="118.6431" y="-146.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 19MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN8_2 --> | |
<g id="NN8_2" class="node"> | |
<title>NN8_2</title> | |
<g id="a_NN8_2"><a xlink:title="12MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="198,-124 148,-124 144,-120 144,-88 194,-88 198,-92 198,-124"/> | |
<polyline fill="none" stroke="#000000" points="194,-120 144,-120 "/> | |
<polyline fill="none" stroke="#000000" points="194,-120 194,-88 "/> | |
<polyline fill="none" stroke="#000000" points="194,-120 198,-124 "/> | |
<text text-anchor="middle" x="171" y="-103.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8->NN8_2 --> | |
<g id="edge12" class="edge"> | |
<title>N8->NN8_2</title> | |
<g id="a_edge12"><a xlink:title="12MB"> | |
<path fill="none" stroke="#000000" d="M129.5613,-175.9504C133.8711,-170.0292 138.1425,-163.9198 142,-158 147.1663,-150.0717 152.3461,-141.164 156.8692,-132.9912"/> | |
<polygon fill="#000000" stroke="#000000" points="159.9644,-134.6256 161.6611,-124.1675 153.8129,-131.2849 159.9644,-134.6256"/> | |
</a> | |
</g> | |
<g id="a_edge12-label"><a xlink:title="12MB"> | |
<text text-anchor="middle" x="170.6431" y="-146.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 12MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13 --> | |
<g id="node13" class="node"> | |
<title>N13</title> | |
<g id="a_node13"><a xlink:title="go/build.(*Context).Import (1918.21MB)"> | |
<polygon fill="#edddd5" stroke="#b23c00" points="981.0991,-2519 796.9009,-2519 796.9009,-2426 981.0991,-2426 981.0991,-2519"/> | |
<text text-anchor="middle" x="889" y="-2501.4" font-family="Times,serif" font-size="17.00" fill="#000000">go/build</text> | |
<text text-anchor="middle" x="889" y="-2484.4" font-family="Times,serif" font-size="17.00" fill="#000000">(*Context)</text> | |
<text text-anchor="middle" x="889" y="-2467.4" font-family="Times,serif" font-size="17.00" fill="#000000">Import</text> | |
<text text-anchor="middle" x="889" y="-2450.4" font-family="Times,serif" font-size="17.00" fill="#000000">226.18MB (2.94%)</text> | |
<text text-anchor="middle" x="889" y="-2433.4" font-family="Times,serif" font-size="17.00" fill="#000000">of 1918.21MB (24.97%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N9->N13 --> | |
<g id="edge54" class="edge"> | |
<title>N9->N13</title> | |
<g id="a_edge54"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles ... go/build.(*Context).Import (1916.71MB)"> | |
<path fill="none" stroke="#b23c00" stroke-width="2" stroke-dasharray="1,5" d="M889,-2568.749C889,-2557.0862 889,-2543.1266 889,-2529.5044"/> | |
<polygon fill="#b23c00" stroke="#b23c00" stroke-width="2" points="892.5001,-2529.1968 889,-2519.1968 885.5001,-2529.1968 892.5001,-2529.1968"/> | |
</a> | |
</g> | |
<g id="a_edge54-label"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles ... go/build.(*Context).Import (1916.71MB)"> | |
<text text-anchor="middle" x="924.3931" y="-2539.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 1916.71MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N29 --> | |
<g id="node29" class="node"> | |
<title>N29</title> | |
<g id="a_node29"><a xlink:title="go/types.(*Checker).checkFiles (1321.17MB)"> | |
<polygon fill="#ede1d8" stroke="#b25718" points="1100.6055,-2492.5 999.3945,-2492.5 999.3945,-2452.5 1100.6055,-2452.5 1100.6055,-2492.5"/> | |
<text text-anchor="middle" x="1050" y="-2482.1" font-family="Times,serif" font-size="8.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1050" y="-2474.1" font-family="Times,serif" font-size="8.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1050" y="-2466.1" font-family="Times,serif" font-size="8.00" fill="#000000">checkFiles</text> | |
<text text-anchor="middle" x="1050" y="-2458.1" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 1321.17MB (17.20%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N9->N29 --> | |
<g id="edge57" class="edge"> | |
<title>N9->N29</title> | |
<g id="a_edge57"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles ... go/types.(*Checker).checkFiles (1313.44MB)"> | |
<path fill="none" stroke="#b25819" stroke-dasharray="1,5" d="M937.9047,-2568.8641C946.7873,-2563.2358 955.8219,-2557.1528 964,-2551 984.6847,-2535.4379 1006.1929,-2515.8043 1022.5258,-2500.0654"/> | |
<polygon fill="#b25819" stroke="#b25819" points="1025.3799,-2502.1714 1030.1017,-2492.6869 1020.4959,-2497.1567 1025.3799,-2502.1714"/> | |
</a> | |
</g> | |
<g id="a_edge57-label"><a xlink:title="github.com/sourcegraph/go-langserver/vendor/golang.org/x/tools/go/loader.(*importer).addFiles ... go/types.(*Checker).checkFiles (1313.44MB)"> | |
<text text-anchor="middle" x="1016.3931" y="-2539.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 1313.44MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10 --> | |
<g id="node10" class="node"> | |
<title>N10</title> | |
<g id="a_node10"><a xlink:title="go/parser.(*parser).parsePrimaryExpr (1598.75MB)"> | |
<polygon fill="#edded5" stroke="#b24300" points="977.6055,-830 876.3945,-830 876.3945,-790 977.6055,-790 977.6055,-830"/> | |
<text text-anchor="middle" x="927" y="-819.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="927" y="-811.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="927" y="-803.6" font-family="Times,serif" font-size="8.00" fill="#000000">parsePrimaryExpr</text> | |
<text text-anchor="middle" x="927" y="-795.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 1598.75MB (20.82%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N12 --> | |
<g id="edge100" class="edge"> | |
<title>N10->N12</title> | |
<g id="a_edge100"><a xlink:title="go/parser.(*parser).parsePrimaryExpr ... go/parser.(*parser).next (81.14MB)"> | |
<path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M904.011,-789.9426C885.9163,-773.8956 860.2873,-750.5852 839,-729 824.0265,-713.817 718.6128,-605.9192 711,-586 705.288,-571.0543 708.2262,-565.7577 711,-550 722.3948,-485.2667 759.6646,-311.765 812,-272 865.4937,-231.3549 1324.5918,-219.0654 1489.9515,-215.9381"/> | |
<polygon fill="#b2b0a9" stroke="#b2b0a9" points="1490.4775,-219.4291 1500.4112,-215.7452 1490.3483,-212.4303 1490.4775,-219.4291"/> | |
</a> | |
</g> | |
<g id="a_edge100-label"><a xlink:title="go/parser.(*parser).parsePrimaryExpr ... go/parser.(*parser).next (81.14MB)"> | |
<text text-anchor="middle" x="745.3931" y="-520.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 81.14MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N17 --> | |
<g id="edge96" class="edge"> | |
<title>N10->N17</title> | |
<g id="a_edge96"><a xlink:title="go/parser.(*parser).parsePrimaryExpr ... go/parser.(*parser).parseIdent (119.51MB)"> | |
<path fill="none" stroke="#b2aea4" stroke-dasharray="1,5" d="M960.1651,-789.8636C971.9569,-781.7737 984.8199,-771.8009 995,-761 1058.1727,-693.9748 1067.8076,-669.8123 1106,-586 1116.9563,-561.9566 1126.013,-534.4826 1133.003,-509.8147"/> | |
<polygon fill="#b2aea4" stroke="#b2aea4" points="1136.3824,-510.7254 1135.677,-500.1541 1129.6361,-508.858 1136.3824,-510.7254"/> | |
</a> | |
</g> | |
<g id="a_edge96-label"><a xlink:title="go/parser.(*parser).parsePrimaryExpr ... go/parser.(*parser).parseIdent (119.51MB)"> | |
<text text-anchor="middle" x="1128.6367" y="-606.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 119.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N23 --> | |
<g id="node23" class="node"> | |
<title>N23</title> | |
<g id="a_node23"><a xlink:title="go/parser.(*parser).parseOperand (751.41MB)"> | |
<polygon fill="#ede7e1" stroke="#b2875b" points="1006.2111,-726.5 847.7889,-726.5 847.7889,-638.5 1006.2111,-638.5 1006.2111,-726.5"/> | |
<text text-anchor="middle" x="927" y="-709.7" font-family="Times,serif" font-size="16.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="927" y="-693.7" font-family="Times,serif" font-size="16.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="927" y="-677.7" font-family="Times,serif" font-size="16.00" fill="#000000">parseOperand</text> | |
<text text-anchor="middle" x="927" y="-661.7" font-family="Times,serif" font-size="16.00" fill="#000000">193.01MB (2.51%)</text> | |
<text text-anchor="middle" x="927" y="-645.7" font-family="Times,serif" font-size="16.00" fill="#000000">of 751.41MB (9.78%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N23 --> | |
<g id="edge66" class="edge"> | |
<title>N10->N23</title> | |
<g id="a_edge66"><a xlink:title="go/parser.(*parser).parsePrimaryExpr -> go/parser.(*parser).parseOperand (751.41MB)"> | |
<path fill="none" stroke="#b2875b" d="M927,-789.7972C927,-775.4528 927,-755.4737 927,-736.6399"/> | |
<polygon fill="#b2875b" stroke="#b2875b" points="930.5001,-736.6356 927,-726.6357 923.5001,-736.6357 930.5001,-736.6356"/> | |
</a> | |
</g> | |
<g id="a_edge66-label"><a xlink:title="go/parser.(*parser).parsePrimaryExpr -> go/parser.(*parser).parseOperand (751.41MB)"> | |
<text text-anchor="middle" x="958.8931" y="-749.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 751.41MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32 --> | |
<g id="node32" class="node"> | |
<title>N32</title> | |
<g id="a_node32"><a xlink:title="go/parser.(*parser).parseCallOrConversion (535.78MB)"> | |
<polygon fill="#ede9e4" stroke="#b29674" points="1350.0212,-729 1173.9788,-729 1173.9788,-636 1350.0212,-636 1350.0212,-729"/> | |
<text text-anchor="middle" x="1262" y="-711.4" font-family="Times,serif" font-size="17.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1262" y="-694.4" font-family="Times,serif" font-size="17.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1262" y="-677.4" font-family="Times,serif" font-size="17.00" fill="#000000">parseCallOrConversion</text> | |
<text text-anchor="middle" x="1262" y="-660.4" font-family="Times,serif" font-size="17.00" fill="#000000">234.01MB (3.05%)</text> | |
<text text-anchor="middle" x="1262" y="-643.4" font-family="Times,serif" font-size="17.00" fill="#000000">of 535.78MB (6.98%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N32 --> | |
<g id="edge73" class="edge"> | |
<title>N10->N32</title> | |
<g id="a_edge73"><a xlink:title="go/parser.(*parser).parsePrimaryExpr -> go/parser.(*parser).parseCallOrConversion (535.78MB)"> | |
<path fill="none" stroke="#b29674" d="M977.7237,-794.7839C1007.215,-785.6286 1044.965,-773.3786 1078,-761 1106.3424,-750.3798 1136.7113,-737.8931 1164.4426,-726.0415"/> | |
<polygon fill="#b29674" stroke="#b29674" points="1165.9311,-729.2115 1173.7392,-722.0502 1163.1695,-722.7792 1165.9311,-729.2115"/> | |
</a> | |
</g> | |
<g id="a_edge73-label"><a xlink:title="go/parser.(*parser).parsePrimaryExpr -> go/parser.(*parser).parseCallOrConversion (535.78MB)"> | |
<text text-anchor="middle" x="1144.8931" y="-749.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 535.78MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N11->N12 --> | |
<g id="edge94" class="edge"> | |
<title>N11->N12</title> | |
<g id="a_edge94"><a xlink:title="go/parser.ParseFile ... go/parser.(*parser).next (127.18MB)"> | |
<path fill="none" stroke="#b2aea3" stroke-dasharray="1,5" d="M1074.7923,-2198.7702C1083.4149,-2193.1964 1092.1405,-2187.1568 1100,-2181 1159.1332,-2134.6779 1175.9831,-2123.1327 1221,-2063 1256.2685,-2015.889 1251.0365,-1995.413 1283,-1946 1288.5046,-1937.4903 1291.8597,-1936.7346 1297,-1928 1325.1779,-1880.1187 1303.6171,-1848.9209 1346,-1813 1417.8727,-1752.0856 1472.9262,-1814.2209 1552,-1763 1580.316,-1744.658 1719.7459,-1551.3727 1738,-1523 1893.054,-1281.9973 1941,-1197.5729 1941,-911 1941,-911 1941,-911 1941,-309 1941,-241.3716 1717.5834,-222.2801 1608.0842,-216.9844"/> | |
<polygon fill="#b2aea3" stroke="#b2aea3" points="1608.0048,-213.4771 1597.8545,-216.5138 1607.683,-220.4697 1608.0048,-213.4771"/> | |
</a> | |
</g> | |
<g id="a_edge94-label"><a xlink:title="go/parser.ParseFile ... go/parser.(*parser).next (127.18MB)"> | |
<text text-anchor="middle" x="1938.8931" y="-1207.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 127.18MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21 --> | |
<g id="node21" class="node"> | |
<title>N21</title> | |
<g id="a_node21"><a xlink:title="go/parser.(*parser).parseFile (3894.63MB)"> | |
<polygon fill="#edd9d5" stroke="#b22000" points="1093.1586,-2149 958.8414,-2149 958.8414,-2081 1093.1586,-2081 1093.1586,-2149"/> | |
<text text-anchor="middle" x="1026" y="-2135.4" font-family="Times,serif" font-size="12.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1026" y="-2123.4" font-family="Times,serif" font-size="12.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1026" y="-2111.4" font-family="Times,serif" font-size="12.00" fill="#000000">parseFile</text> | |
<text text-anchor="middle" x="1026" y="-2099.4" font-family="Times,serif" font-size="12.00" fill="#000000">38.05MB (0.5%)</text> | |
<text text-anchor="middle" x="1026" y="-2087.4" font-family="Times,serif" font-size="12.00" fill="#000000">of 3894.63MB (50.71%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N11->N21 --> | |
<g id="edge47" class="edge"> | |
<title>N11->N21</title> | |
<g id="a_edge47"><a xlink:title="go/parser.ParseFile -> go/parser.(*parser).parseFile (3874.11MB)"> | |
<path fill="none" stroke="#b22100" stroke-width="3" d="M1026,-2198.7377C1026,-2186.8747 1026,-2172.79 1026,-2159.5888"/> | |
<polygon fill="#b22100" stroke="#b22100" stroke-width="3" points="1029.5001,-2159.2504 1026,-2149.2504 1022.5001,-2159.2504 1029.5001,-2159.2504"/> | |
</a> | |
</g> | |
<g id="a_edge47-label"><a xlink:title="go/parser.ParseFile -> go/parser.(*parser).parseFile (3874.11MB)"> | |
<text text-anchor="middle" x="1061.1367" y="-2169.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 3874.11MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35 --> | |
<g id="node35" class="node"> | |
<title>N35</title> | |
<g id="a_node35"><a xlink:title="go/scanner.(*Scanner).Scan (690.38MB)"> | |
<polygon fill="#ede7e2" stroke="#b28b62" points="1595.6055,-126 1502.3945,-126 1502.3945,-86 1595.6055,-86 1595.6055,-126"/> | |
<text text-anchor="middle" x="1549" y="-115.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/scanner</text> | |
<text text-anchor="middle" x="1549" y="-107.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*Scanner)</text> | |
<text text-anchor="middle" x="1549" y="-99.6" font-family="Times,serif" font-size="8.00" fill="#000000">Scan</text> | |
<text text-anchor="middle" x="1549" y="-91.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 690.38MB (8.99%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N12->N35 --> | |
<g id="edge67" class="edge"> | |
<title>N12->N35</title> | |
<g id="a_edge67"><a xlink:title="go/parser.(*parser).next ... go/scanner.(*Scanner).Scan (690.38MB)"> | |
<path fill="none" stroke="#b28b62" stroke-dasharray="1,5" d="M1549,-194.7534C1549,-178.3108 1549,-154.873 1549,-136.2116"/> | |
<polygon fill="#b28b62" stroke="#b28b62" points="1552.5001,-136.1382 1549,-126.1382 1545.5001,-136.1382 1552.5001,-136.1382"/> | |
</a> | |
</g> | |
<g id="a_edge67-label"><a xlink:title="go/parser.(*parser).next ... go/scanner.(*Scanner).Scan (690.38MB)"> | |
<text text-anchor="middle" x="1580.8931" y="-146.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 690.38MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->N11 --> | |
<g id="edge83" class="edge"> | |
<title>N13->N11</title> | |
<g id="a_edge83"><a xlink:title="go/build.(*Context).Import -> go/parser.ParseFile (280.65MB)"> | |
<path fill="none" stroke="#b2a691" d="M796.8121,-2447.889C735.2675,-2429.3815 662.3996,-2402.7171 644.2139,-2376 626.4578,-2349.9141 624.2585,-2329.4445 644.2139,-2305 681.8529,-2258.8937 848.1164,-2239.3189 948.4073,-2231.5855"/> | |
<polygon fill="#b2a691" stroke="#b2a691" points="948.7882,-2235.0669 958.4989,-2230.83 948.2655,-2228.0864 948.7882,-2235.0669"/> | |
</a> | |
</g> | |
<g id="a_edge83-label"><a xlink:title="go/build.(*Context).Import -> go/parser.ParseFile (280.65MB)"> | |
<text text-anchor="middle" x="676.8931" y="-2336.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 280.65MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN13_0 --> | |
<g id="NN13_0" class="node"> | |
<title>NN13_0</title> | |
<g id="a_NN13_0"><a xlink:title="26.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1290,-2358.5 1240,-2358.5 1236,-2354.5 1236,-2322.5 1286,-2322.5 1290,-2326.5 1290,-2358.5"/> | |
<polyline fill="none" stroke="#000000" points="1286,-2354.5 1236,-2354.5 "/> | |
<polyline fill="none" stroke="#000000" points="1286,-2354.5 1286,-2322.5 "/> | |
<polyline fill="none" stroke="#000000" points="1286,-2354.5 1290,-2358.5 "/> | |
<text text-anchor="middle" x="1263" y="-2338.1" font-family="Times,serif" font-size="8.00" fill="#000000">48B..64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->NN13_0 --> | |
<g id="edge13" class="edge"> | |
<title>N13->NN13_0</title> | |
<g id="a_edge13"><a xlink:title="26.50MB"> | |
<path fill="none" stroke="#000000" d="M981.2907,-2428.5742C984.2058,-2427.649 987.1132,-2426.7869 990,-2426 1066.7155,-2405.0882 1092.4688,-2432.8517 1168,-2408 1194.1661,-2399.3907 1219.3705,-2380.8469 1237.2352,-2365.3705"/> | |
<polygon fill="#000000" stroke="#000000" points="1239.7763,-2367.7937 1244.9039,-2358.5223 1235.1137,-2362.5725 1239.7763,-2367.7937"/> | |
</a> | |
</g> | |
<g id="a_edge13-label"><a xlink:title="26.50MB"> | |
<text text-anchor="middle" x="1224.3931" y="-2396.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 26.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN13_1 --> | |
<g id="NN13_1" class="node"> | |
<title>NN13_1</title> | |
<g id="a_NN13_1"><a xlink:title="24MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="771,-2358.5 721,-2358.5 717,-2354.5 717,-2322.5 767,-2322.5 771,-2326.5 771,-2358.5"/> | |
<polyline fill="none" stroke="#000000" points="767,-2354.5 717,-2354.5 "/> | |
<polyline fill="none" stroke="#000000" points="767,-2354.5 767,-2322.5 "/> | |
<polyline fill="none" stroke="#000000" points="767,-2354.5 771,-2358.5 "/> | |
<text text-anchor="middle" x="744" y="-2338.1" font-family="Times,serif" font-size="8.00" fill="#000000">80B..512B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->NN13_1 --> | |
<g id="edge14" class="edge"> | |
<title>N13->NN13_1</title> | |
<g id="a_edge14"><a xlink:title="24MB"> | |
<path fill="none" stroke="#000000" d="M806.2732,-2425.8316C798.9662,-2420.2576 791.9777,-2414.2932 785.7139,-2408 774.1401,-2396.3719 764.3071,-2380.9544 757.1,-2367.7899"/> | |
<polygon fill="#000000" stroke="#000000" points="760.0717,-2365.9203 752.3288,-2358.6886 753.872,-2369.1705 760.0717,-2365.9203"/> | |
</a> | |
</g> | |
<g id="a_edge14-label"><a xlink:title="24MB"> | |
<text text-anchor="middle" x="805.6431" y="-2396.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 24MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN13_2 --> | |
<g id="NN13_2" class="node"> | |
<title>NN13_2</title> | |
<g id="a_NN13_2"><a xlink:title="5.52MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="843,-2358.5 793,-2358.5 789,-2354.5 789,-2322.5 839,-2322.5 843,-2326.5 843,-2358.5"/> | |
<polyline fill="none" stroke="#000000" points="839,-2354.5 789,-2354.5 "/> | |
<polyline fill="none" stroke="#000000" points="839,-2354.5 839,-2322.5 "/> | |
<polyline fill="none" stroke="#000000" points="839,-2354.5 843,-2358.5 "/> | |
<text text-anchor="middle" x="816" y="-2338.1" font-family="Times,serif" font-size="8.00" fill="#000000">4kB..8kB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->NN13_2 --> | |
<g id="edge15" class="edge"> | |
<title>N13->NN13_2</title> | |
<g id="a_edge15"><a xlink:title="5.52MB"> | |
<path fill="none" stroke="#000000" d="M846.3897,-2425.8386C842.2552,-2420.0668 838.4159,-2414.0587 835.2139,-2408 828.7645,-2395.797 824.2606,-2381.1765 821.2433,-2368.6676"/> | |
<polygon fill="#000000" stroke="#000000" points="824.6278,-2367.7628 819.0483,-2358.7561 817.7934,-2369.2764 824.6278,-2367.7628"/> | |
</a> | |
</g> | |
<g id="a_edge15-label"><a xlink:title="5.52MB"> | |
<text text-anchor="middle" x="860.8931" y="-2396.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 5.52MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN13_3 --> | |
<g id="NN13_3" class="node"> | |
<title>NN13_3</title> | |
<g id="a_NN13_3"><a xlink:title="5MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="916,-2358.5 866,-2358.5 862,-2354.5 862,-2322.5 912,-2322.5 916,-2326.5 916,-2358.5"/> | |
<polyline fill="none" stroke="#000000" points="912,-2354.5 862,-2354.5 "/> | |
<polyline fill="none" stroke="#000000" points="912,-2354.5 912,-2322.5 "/> | |
<polyline fill="none" stroke="#000000" points="912,-2354.5 916,-2358.5 "/> | |
<text text-anchor="middle" x="889" y="-2338.1" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->NN13_3 --> | |
<g id="edge16" class="edge"> | |
<title>N13->NN13_3</title> | |
<g id="a_edge16"><a xlink:title="5MB"> | |
<path fill="none" stroke="#000000" d="M889,-2425.9617C889,-2406.8428 889,-2385.331 889,-2368.6728"/> | |
<polygon fill="#000000" stroke="#000000" points="892.5001,-2368.5008 889,-2358.5008 885.5001,-2368.5008 892.5001,-2368.5008"/> | |
</a> | |
</g> | |
<g id="a_edge16-label"><a xlink:title="5MB"> | |
<text text-anchor="middle" x="905.1431" y="-2396.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 5MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N39 --> | |
<g id="node39" class="node"> | |
<title>N39</title> | |
<g id="a_node39"><a xlink:title="go/build.(*Context).matchFile (989.46MB)"> | |
<polygon fill="#ede4dd" stroke="#b2743f" points="1212.4949,-2253.5 1111.5051,-2253.5 1111.5051,-2200.5 1212.4949,-2200.5 1212.4949,-2253.5"/> | |
<text text-anchor="middle" x="1162" y="-2242.3" font-family="Times,serif" font-size="9.00" fill="#000000">go/build</text> | |
<text text-anchor="middle" x="1162" y="-2233.3" font-family="Times,serif" font-size="9.00" fill="#000000">(*Context)</text> | |
<text text-anchor="middle" x="1162" y="-2224.3" font-family="Times,serif" font-size="9.00" fill="#000000">matchFile</text> | |
<text text-anchor="middle" x="1162" y="-2215.3" font-family="Times,serif" font-size="9.00" fill="#000000">3MB (0.039%)</text> | |
<text text-anchor="middle" x="1162" y="-2206.3" font-family="Times,serif" font-size="9.00" fill="#000000">of 989.46MB (12.88%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->N39 --> | |
<g id="edge61" class="edge"> | |
<title>N13->N39</title> | |
<g id="a_edge61"><a xlink:title="go/build.(*Context).Import -> go/build.(*Context).matchFile (989.46MB)"> | |
<path fill="none" stroke="#b2743f" d="M981.0623,-2429.7397C984.0699,-2428.4629 987.0549,-2427.213 990,-2426 1049.9328,-2401.315 1083.9793,-2424.482 1127,-2376 1154.3725,-2345.1528 1161.4195,-2296.943 1162.7254,-2263.7613"/> | |
<polygon fill="#b2743f" stroke="#b2743f" points="1166.2292,-2263.6369 1162.9661,-2253.5571 1159.2311,-2263.4717 1166.2292,-2263.6369"/> | |
</a> | |
</g> | |
<g id="a_edge61-label"><a xlink:title="go/build.(*Context).Import -> go/build.(*Context).matchFile (989.46MB)"> | |
<text text-anchor="middle" x="1189.8931" y="-2336.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 989.46MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14 --> | |
<g id="node14" class="node"> | |
<title>N14</title> | |
<g id="a_node14"><a xlink:title="go/parser.(*parser).parseExprList (1749.20MB)"> | |
<polygon fill="#edddd5" stroke="#b23f00" points="1200.4352,-1187 1045.5648,-1187 1045.5648,-1109 1200.4352,-1109 1200.4352,-1187"/> | |
<text text-anchor="middle" x="1123" y="-1171.8" font-family="Times,serif" font-size="14.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1123" y="-1157.8" font-family="Times,serif" font-size="14.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1123" y="-1143.8" font-family="Times,serif" font-size="14.00" fill="#000000">parseExprList</text> | |
<text text-anchor="middle" x="1123" y="-1129.8" font-family="Times,serif" font-size="14.00" fill="#000000">97.01MB (1.26%)</text> | |
<text text-anchor="middle" x="1123" y="-1115.8" font-family="Times,serif" font-size="14.00" fill="#000000">of 1749.20MB (22.77%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14->N12 --> | |
<g id="edge122" class="edge"> | |
<title>N14->N12</title> | |
<g id="a_edge122"><a xlink:title="go/parser.(*parser).parseExprList -> go/parser.(*parser).next (9.01MB)"> | |
<path fill="none" stroke="#b2b2b1" d="M1045.3561,-1130.8315C1013.5117,-1121.8025 977.132,-1108.8234 947,-1091 929.1393,-1080.4352 926.3102,-1074.9203 913,-1059 791.4287,-913.5881 422.9569,-438.4887 542,-291 571.9653,-253.8744 1279.1915,-224.9309 1490.137,-217.1014"/> | |
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="1490.5264,-220.5895 1500.3905,-216.723 1490.2682,-213.5943 1490.5264,-220.5895"/> | |
</a> | |
</g> | |
<g id="a_edge122-label"><a xlink:title="go/parser.(*parser).parseExprList -> go/parser.(*parser).next (9.01MB)"> | |
<text text-anchor="middle" x="693.8931" y="-678.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 9.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN14_0 --> | |
<g id="NN14_0" class="node"> | |
<title>NN14_0</title> | |
<g id="a_NN14_0"><a xlink:title="74.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1070,-1038 1020,-1038 1016,-1034 1016,-1002 1066,-1002 1070,-1006 1070,-1038"/> | |
<polyline fill="none" stroke="#000000" points="1066,-1034 1016,-1034 "/> | |
<polyline fill="none" stroke="#000000" points="1066,-1034 1066,-1002 "/> | |
<polyline fill="none" stroke="#000000" points="1066,-1034 1070,-1038 "/> | |
<text text-anchor="middle" x="1043" y="-1017.6" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14->NN14_0 --> | |
<g id="edge17" class="edge"> | |
<title>N14->NN14_0</title> | |
<g id="a_edge17"><a xlink:title="74.50MB"> | |
<path fill="none" stroke="#000000" d="M1075.4999,-1108.7194C1070.5271,-1103.1539 1065.9385,-1097.2009 1062.2139,-1091 1054.4067,-1078.0024 1049.7083,-1061.7883 1046.9144,-1048.1374"/> | |
<polygon fill="#000000" stroke="#000000" points="1050.3576,-1047.5086 1045.1292,-1038.2937 1043.4699,-1048.7578 1050.3576,-1047.5086"/> | |
</a> | |
</g> | |
<g id="a_edge17-label"><a xlink:title="74.50MB"> | |
<text text-anchor="middle" x="1090.3931" y="-1079.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 74.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN14_1 --> | |
<g id="NN14_1" class="node"> | |
<title>NN14_1</title> | |
<g id="a_NN14_1"><a xlink:title="15.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1150,-1038 1100,-1038 1096,-1034 1096,-1002 1146,-1002 1150,-1006 1150,-1038"/> | |
<polyline fill="none" stroke="#000000" points="1146,-1034 1096,-1034 "/> | |
<polyline fill="none" stroke="#000000" points="1146,-1034 1146,-1002 "/> | |
<polyline fill="none" stroke="#000000" points="1146,-1034 1150,-1038 "/> | |
<text text-anchor="middle" x="1123" y="-1017.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14->NN14_1 --> | |
<g id="edge18" class="edge"> | |
<title>N14->NN14_1</title> | |
<g id="a_edge18"><a xlink:title="15.50MB"> | |
<path fill="none" stroke="#000000" d="M1123,-1108.9003C1123,-1089.3255 1123,-1066.0688 1123,-1048.2529"/> | |
<polygon fill="#000000" stroke="#000000" points="1126.5001,-1048.2033 1123,-1038.2033 1119.5001,-1048.2034 1126.5001,-1048.2033"/> | |
</a> | |
</g> | |
<g id="a_edge18-label"><a xlink:title="15.50MB"> | |
<text text-anchor="middle" x="1151.3931" y="-1079.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 15.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN14_2 --> | |
<g id="NN14_2" class="node"> | |
<title>NN14_2</title> | |
<g id="a_NN14_2"><a xlink:title="4.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1230,-1038 1180,-1038 1176,-1034 1176,-1002 1226,-1002 1230,-1006 1230,-1038"/> | |
<polyline fill="none" stroke="#000000" points="1226,-1034 1176,-1034 "/> | |
<polyline fill="none" stroke="#000000" points="1226,-1034 1226,-1002 "/> | |
<polyline fill="none" stroke="#000000" points="1226,-1034 1230,-1038 "/> | |
<text text-anchor="middle" x="1203" y="-1017.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14->NN14_2 --> | |
<g id="edge19" class="edge"> | |
<title>N14->NN14_2</title> | |
<g id="a_edge19"><a xlink:title="4.50MB"> | |
<path fill="none" stroke="#000000" d="M1167.8035,-1108.7136C1172.6974,-1103.1095 1177.2532,-1097.1486 1181,-1091 1188.9732,-1077.9158 1194.2829,-1061.6954 1197.6847,-1048.0626"/> | |
<polygon fill="#000000" stroke="#000000" points="1201.1143,-1048.7648 1199.9266,-1038.2367 1194.2897,-1047.2076 1201.1143,-1048.7648"/> | |
</a> | |
</g> | |
<g id="a_edge19-label"><a xlink:title="4.50MB"> | |
<text text-anchor="middle" x="1211.8931" y="-1079.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 4.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N16 --> | |
<g id="node16" class="node"> | |
<title>N16</title> | |
<g id="a_node16"><a xlink:title="go/parser.(*parser).parseExpr (1688.76MB)"> | |
<polygon fill="#edded5" stroke="#b24100" points="977.6055,-931 876.3945,-931 876.3945,-891 977.6055,-891 977.6055,-931"/> | |
<text text-anchor="middle" x="927" y="-920.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="927" y="-912.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="927" y="-904.6" font-family="Times,serif" font-size="8.00" fill="#000000">parseExpr</text> | |
<text text-anchor="middle" x="927" y="-896.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 1688.76MB (21.99%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14->N16 --> | |
<g id="edge55" class="edge"> | |
<title>N14->N16</title> | |
<g id="a_edge55"><a xlink:title="go/parser.(*parser).parseExprList -> go/parser.(*parser).parseExpr (1647.69MB)"> | |
<path fill="none" stroke="#b24200" stroke-width="2" d="M1045.5951,-1131.009C1006.112,-1118.1206 961.2497,-1096.0574 936.2139,-1059 912.6482,-1024.1186 915.4278,-973.416 920.5118,-941.3341"/> | |
<polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="924.0058,-941.6727 922.2895,-931.2178 917.1115,-940.4611 924.0058,-941.6727"/> | |
</a> | |
</g> | |
<g id="a_edge55-label"><a xlink:title="go/parser.(*parser).parseExprList -> go/parser.(*parser).parseExpr (1647.69MB)"> | |
<text text-anchor="middle" x="971.3931" y="-1015.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 1647.69MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->N12 --> | |
<g id="edge118" class="edge"> | |
<title>N15->N12</title> | |
<g id="a_edge118"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).next (15.02MB)"> | |
<path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1543.3571,-1675.1192C1559.6411,-1665.2831 1576.1764,-1653.7647 1590,-1641 1721.9852,-1519.1251 1739.104,-1469.3795 1822,-1310 1896.6919,-1166.3939 1835.4828,-1107.0992 1870.2139,-949 1878.724,-910.2611 1903,-905.6626 1903,-866 1903,-866 1903,-866 1903,-309 1903,-248.6759 1708.5477,-226.1357 1607.8789,-218.5086"/> | |
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="1608.0794,-215.014 1597.8505,-217.7746 1607.5683,-221.9953 1608.0794,-215.014"/> | |
</a> | |
</g> | |
<g id="a_edge118-label"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).next (15.02MB)"> | |
<text text-anchor="middle" x="1898.3931" y="-951.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 15.02MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN15_0 --> | |
<g id="NN15_0" class="node"> | |
<title>NN15_0</title> | |
<g id="a_NN15_0"><a xlink:title="33.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1498,-1609 1448,-1609 1444,-1605 1444,-1573 1494,-1573 1498,-1577 1498,-1609"/> | |
<polyline fill="none" stroke="#000000" points="1494,-1605 1444,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="1494,-1605 1494,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="1494,-1605 1498,-1609 "/> | |
<text text-anchor="middle" x="1471" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B..80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->NN15_0 --> | |
<g id="edge20" class="edge"> | |
<title>N15->NN15_0</title> | |
<g id="a_edge20"><a xlink:title="33.50MB"> | |
<path fill="none" stroke="#000000" d="M1471,-1674.344C1471,-1656.5903 1471,-1635.6061 1471,-1619.1351"/> | |
<polygon fill="#000000" stroke="#000000" points="1474.5001,-1619.0423 1471,-1609.0423 1467.5001,-1619.0423 1474.5001,-1619.0423"/> | |
</a> | |
</g> | |
<g id="a_edge20-label"><a xlink:title="33.50MB"> | |
<text text-anchor="middle" x="1499.3931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 33.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN15_1 --> | |
<g id="NN15_1" class="node"> | |
<title>NN15_1</title> | |
<g id="a_NN15_1"><a xlink:title="5.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1578,-1609 1528,-1609 1524,-1605 1524,-1573 1574,-1573 1578,-1577 1578,-1609"/> | |
<polyline fill="none" stroke="#000000" points="1574,-1605 1524,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="1574,-1605 1574,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="1574,-1605 1578,-1609 "/> | |
<text text-anchor="middle" x="1551" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->NN15_1 --> | |
<g id="edge21" class="edge"> | |
<title>N15->NN15_1</title> | |
<g id="a_edge21"><a xlink:title="5.50MB"> | |
<path fill="none" stroke="#000000" d="M1504.6287,-1674.305C1513.1893,-1663.9656 1521.9514,-1652.414 1529,-1641 1533.2962,-1634.0429 1537.194,-1626.1006 1540.4745,-1618.6258"/> | |
<polygon fill="#000000" stroke="#000000" points="1543.7905,-1619.7674 1544.4129,-1609.1909 1537.3308,-1617.0709 1543.7905,-1619.7674"/> | |
</a> | |
</g> | |
<g id="a_edge21-label"><a xlink:title="5.50MB"> | |
<text text-anchor="middle" x="1560.8931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 5.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN15_2 --> | |
<g id="NN15_2" class="node"> | |
<title>NN15_2</title> | |
<g id="a_NN15_2"><a xlink:title="5MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1388,-1609 1338,-1609 1334,-1605 1334,-1573 1384,-1573 1388,-1577 1388,-1609"/> | |
<polyline fill="none" stroke="#000000" points="1384,-1605 1334,-1605 "/> | |
<polyline fill="none" stroke="#000000" points="1384,-1605 1384,-1573 "/> | |
<polyline fill="none" stroke="#000000" points="1384,-1605 1388,-1609 "/> | |
<text text-anchor="middle" x="1361" y="-1588.6" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->NN15_2 --> | |
<g id="edge22" class="edge"> | |
<title>N15->NN15_2</title> | |
<g id="a_edge22"><a xlink:title="5MB"> | |
<path fill="none" stroke="#000000" d="M1401.8408,-1674.3901C1389.4897,-1665.0154 1377.9523,-1653.8728 1369.7139,-1641 1365.6462,-1634.6441 1363.3248,-1626.945 1362.0367,-1619.5129"/> | |
<polygon fill="#000000" stroke="#000000" points="1365.4848,-1618.8687 1360.8292,-1609.3516 1358.5337,-1619.6947 1365.4848,-1618.8687"/> | |
</a> | |
</g> | |
<g id="a_edge22-label"><a xlink:title="5MB"> | |
<text text-anchor="middle" x="1385.1431" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 5MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25 --> | |
<g id="node25" class="node"> | |
<title>N25</title> | |
<g id="a_node25"><a xlink:title="go/parser.(*parser).tryIdentOrType (358.74MB)"> | |
<polygon fill="#edeae7" stroke="#b2a188" points="1543.6055,-1400 1450.3945,-1400 1450.3945,-1360 1543.6055,-1360 1543.6055,-1400"/> | |
<text text-anchor="middle" x="1497" y="-1389.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1497" y="-1381.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1497" y="-1373.6" font-family="Times,serif" font-size="8.00" fill="#000000">tryIdentOrType</text> | |
<text text-anchor="middle" x="1497" y="-1365.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 358.74MB (4.67%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->N25 --> | |
<g id="edge86" class="edge"> | |
<title>N15->N25</title> | |
<g id="a_edge86"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).tryIdentOrType (189.19MB)"> | |
<path fill="none" stroke="#b2ab9c" stroke-dasharray="1,5" d="M1454.536,-1674.0307C1446.9526,-1655.0115 1438.8046,-1631.2112 1435,-1609 1422.4902,-1535.9682 1458.1779,-1452.4957 1480.5026,-1409.3197"/> | |
<polygon fill="#b2ab9c" stroke="#b2ab9c" points="1483.7255,-1410.7123 1485.3119,-1400.2368 1477.5392,-1407.4366 1483.7255,-1410.7123"/> | |
</a> | |
</g> | |
<g id="a_edge86-label"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).tryIdentOrType (189.19MB)"> | |
<text text-anchor="middle" x="1465.8931" y="-1543.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 189.19MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->N28 --> | |
<g id="edge98" class="edge"> | |
<title>N15->N28</title> | |
<g id="a_edge98"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).expectSemi (95.04MB)"> | |
<path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M1398.5877,-1681.3173C1369.1954,-1664.9154 1338.9197,-1641.216 1325,-1609 1278.8218,-1502.124 1342.6386,-1362.2219 1375.0813,-1302.526"/> | |
<polygon fill="#b2afa7" stroke="#b2afa7" points="1378.2134,-1304.0947 1379.9972,-1293.6511 1372.09,-1300.7029 1378.2134,-1304.0947"/> | |
</a> | |
</g> | |
<g id="a_edge98-label"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).expectSemi (95.04MB)"> | |
<text text-anchor="middle" x="1345.3931" y="-1482.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 95.04MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31 --> | |
<g id="node31" class="node"> | |
<title>N31</title> | |
<g id="a_node31"><a xlink:title="go/parser.(*parser).parseValueSpec (598.41MB)"> | |
<polygon fill="#ede8e3" stroke="#b2926c" points="1279.5472,-1523 1148.4528,-1523 1148.4528,-1450 1279.5472,-1450 1279.5472,-1523"/> | |
<text text-anchor="middle" x="1214" y="-1508.6" font-family="Times,serif" font-size="13.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1214" y="-1495.6" font-family="Times,serif" font-size="13.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1214" y="-1482.6" font-family="Times,serif" font-size="13.00" fill="#000000">parseValueSpec</text> | |
<text text-anchor="middle" x="1214" y="-1469.6" font-family="Times,serif" font-size="13.00" fill="#000000">56MB (0.73%)</text> | |
<text text-anchor="middle" x="1214" y="-1456.6" font-family="Times,serif" font-size="13.00" fill="#000000">of 598.41MB (7.79%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->N31 --> | |
<g id="edge71" class="edge"> | |
<title>N15->N31</title> | |
<g id="a_edge71"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).parseValueSpec (596.40MB)"> | |
<path fill="none" stroke="#b2926d" stroke-dasharray="1,5" d="M1398.8291,-1701.5133C1342.3507,-1689.9506 1267.0788,-1664.5289 1228.2139,-1609 1213.0137,-1587.2826 1209.1917,-1557.9181 1209.2974,-1533.3834"/> | |
<polygon fill="#b2926d" stroke="#b2926d" points="1212.8009,-1533.288 1209.5614,-1523.2006 1205.8033,-1533.1065 1212.8009,-1533.288"/> | |
</a> | |
</g> | |
<g id="a_edge71-label"><a xlink:title="go/parser.(*parser).parseGenDecl ... go/parser.(*parser).parseValueSpec (596.40MB)"> | |
<text text-anchor="middle" x="1259.8931" y="-1586.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 596.40MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N16->N10 --> | |
<g id="edge56" class="edge"> | |
<title>N16->N10</title> | |
<g id="a_edge56"><a xlink:title="go/parser.(*parser).parseExpr ... go/parser.(*parser).parsePrimaryExpr (1598.75MB)"> | |
<path fill="none" stroke="#b24300" stroke-width="2" stroke-dasharray="1,5" d="M927,-890.5611C927,-876.0922 927,-856.4468 927,-840.1784"/> | |
<polygon fill="#b24300" stroke="#b24300" stroke-width="2" points="930.5001,-840.0637 927,-830.0638 923.5001,-840.0638 930.5001,-840.0637"/> | |
</a> | |
</g> | |
<g id="a_edge56-label"><a xlink:title="go/parser.(*parser).parseExpr ... go/parser.(*parser).parsePrimaryExpr (1598.75MB)"> | |
<text text-anchor="middle" x="962.3931" y="-861.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 1598.75MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N16->N12 --> | |
<g id="edge119" class="edge"> | |
<title>N16->N12</title> | |
<g id="a_edge119"><a xlink:title="go/parser.(*parser).parseExpr ... go/parser.(*parser).next (11.50MB)"> | |
<path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M905.2308,-890.8526C892.3457,-877.7959 876.6966,-859.7716 867,-841 802.0041,-715.1738 826,-666.6216 826,-525 826,-525 826,-525 826,-309 826,-242.1717 1318.0257,-221.6325 1490.2893,-216.4895"/> | |
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="1490.5456,-219.9836 1500.4393,-216.1933 1490.3414,-212.9865 1490.5456,-219.9836"/> | |
</a> | |
</g> | |
<g id="a_edge119-label"><a xlink:title="go/parser.(*parser).parseExpr ... go/parser.(*parser).next (11.50MB)"> | |
<text text-anchor="middle" x="854.1367" y="-563.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 11.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N17->N12 --> | |
<g id="edge113" class="edge"> | |
<title>N17->N12</title> | |
<g id="a_edge113"><a xlink:title="go/parser.(*parser).parseIdent -> go/parser.(*parser).next (25.64MB)"> | |
<path fill="none" stroke="#b2b1af" d="M1075.306,-376.8665C1050.7109,-349.2966 1034.7663,-317.1831 1057.2139,-291 1085.1417,-258.4247 1365.8923,-230.639 1490.2479,-219.827"/> | |
<polygon fill="#b2b1af" stroke="#b2b1af" points="1490.6934,-223.3017 1500.3558,-218.9556 1490.0922,-216.3275 1490.6934,-223.3017"/> | |
</a> | |
</g> | |
<g id="a_edge113-label"><a xlink:title="go/parser.(*parser).parseIdent -> go/parser.(*parser).next (25.64MB)"> | |
<text text-anchor="middle" x="1085.3931" y="-304.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 25.64MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN17_0 --> | |
<g id="NN17_0" class="node"> | |
<title>NN17_0</title> | |
<g id="a_NN17_0"><a xlink:title="691.02MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1177,-327 1127,-327 1123,-323 1123,-291 1173,-291 1177,-295 1177,-327"/> | |
<polyline fill="none" stroke="#000000" points="1173,-323 1123,-323 "/> | |
<polyline fill="none" stroke="#000000" points="1173,-323 1173,-291 "/> | |
<polyline fill="none" stroke="#000000" points="1173,-323 1177,-327 "/> | |
<text text-anchor="middle" x="1150" y="-306.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N17->NN17_0 --> | |
<g id="edge23" class="edge"> | |
<title>N17->NN17_0</title> | |
<g id="a_edge23"><a xlink:title="691.02MB"> | |
<path fill="none" stroke="#000000" d="M1150,-376.7842C1150,-363.06 1150,-349.1537 1150,-337.5387"/> | |
<polygon fill="#000000" stroke="#000000" points="1153.5001,-337.1854 1150,-327.1855 1146.5001,-337.1855 1153.5001,-337.1854"/> | |
</a> | |
</g> | |
<g id="a_edge23-label"><a xlink:title="691.02MB"> | |
<text text-anchor="middle" x="1181.8931" y="-347.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 691.02MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18 --> | |
<g id="node18" class="node"> | |
<title>N18</title> | |
<g id="a_node18"><a xlink:title="go/types.(*Checker).objDecl (1049.46MB)"> | |
<polygon fill="#ede4dc" stroke="#b26f38" points="1604.6055,-2360.5 1503.3945,-2360.5 1503.3945,-2320.5 1604.6055,-2320.5 1604.6055,-2360.5"/> | |
<text text-anchor="middle" x="1554" y="-2350.1" font-family="Times,serif" font-size="8.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1554" y="-2342.1" font-family="Times,serif" font-size="8.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1554" y="-2334.1" font-family="Times,serif" font-size="8.00" fill="#000000">objDecl</text> | |
<text text-anchor="middle" x="1554" y="-2326.1" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 1049.46MB (13.66%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N24 --> | |
<g id="node24" class="node"> | |
<title>N24</title> | |
<g id="a_node24"><a xlink:title="go/types.(*Checker).rawExpr (620.17MB)"> | |
<polygon fill="#ede8e3" stroke="#b2906a" points="1600.6055,-2247 1507.3945,-2247 1507.3945,-2207 1600.6055,-2207 1600.6055,-2247"/> | |
<text text-anchor="middle" x="1554" y="-2236.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1554" y="-2228.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1554" y="-2220.6" font-family="Times,serif" font-size="8.00" fill="#000000">rawExpr</text> | |
<text text-anchor="middle" x="1554" y="-2212.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 620.17MB (8.07%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18->N24 --> | |
<g id="edge69" class="edge"> | |
<title>N18->N24</title> | |
<g id="a_edge69"><a xlink:title="go/types.(*Checker).objDecl ... go/types.(*Checker).rawExpr (612.49MB)"> | |
<path fill="none" stroke="#b2916b" stroke-dasharray="1,5" d="M1554,-2320.4697C1554,-2302.9917 1554,-2277.37 1554,-2257.3703"/> | |
<polygon fill="#b2916b" stroke="#b2916b" points="1557.5001,-2257.2118 1554,-2247.2118 1550.5001,-2257.2118 1557.5001,-2257.2118"/> | |
</a> | |
</g> | |
<g id="a_edge69-label"><a xlink:title="go/types.(*Checker).objDecl ... go/types.(*Checker).rawExpr (612.49MB)"> | |
<text text-anchor="middle" x="1585.8931" y="-2275.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 612.49MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N38 --> | |
<g id="node38" class="node"> | |
<title>N38</title> | |
<g id="a_node38"><a xlink:title="go/types.(*Checker).typExpr (292.42MB)"> | |
<polygon fill="#edebe8" stroke="#b2a590" points="1840.6055,-2247 1747.3945,-2247 1747.3945,-2207 1840.6055,-2207 1840.6055,-2247"/> | |
<text text-anchor="middle" x="1794" y="-2236.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1794" y="-2228.6" font-family="Times,serif" font-size="8.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1794" y="-2220.6" font-family="Times,serif" font-size="8.00" fill="#000000">typExpr</text> | |
<text text-anchor="middle" x="1794" y="-2212.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 292.42MB (3.81%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18->N38 --> | |
<g id="edge84" class="edge"> | |
<title>N18->N38</title> | |
<g id="a_edge84"><a xlink:title="go/types.(*Checker).objDecl ... go/types.(*Checker).typExpr (274.99MB)"> | |
<path fill="none" stroke="#b2a692" stroke-dasharray="1,5" d="M1604.7684,-2333.0973C1659.9754,-2324.149 1743.6133,-2307.6842 1768,-2287 1777.1475,-2279.2413 1783.1731,-2267.6667 1787.0955,-2256.7476"/> | |
<polygon fill="#b2a692" stroke="#b2a692" points="1790.4894,-2257.6213 1790.1357,-2247.0323 1783.8089,-2255.5307 1790.4894,-2257.6213"/> | |
</a> | |
</g> | |
<g id="a_edge84-label"><a xlink:title="go/types.(*Checker).objDecl ... go/types.(*Checker).typExpr (274.99MB)"> | |
<text text-anchor="middle" x="1810.8931" y="-2275.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 274.99MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N19 --> | |
<g id="node19" class="node"> | |
<title>N19</title> | |
<g id="a_node19"><a xlink:title="go/parser.(*parser).parseBlockStmt (1033.30MB)"> | |
<polygon fill="#ede4dd" stroke="#b2703a" points="280.0471,-475 135.9529,-475 135.9529,-402 280.0471,-402 280.0471,-475"/> | |
<text text-anchor="middle" x="208" y="-460.6" font-family="Times,serif" font-size="13.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="208" y="-447.6" font-family="Times,serif" font-size="13.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="208" y="-434.6" font-family="Times,serif" font-size="13.00" fill="#000000">parseBlockStmt</text> | |
<text text-anchor="middle" x="208" y="-421.6" font-family="Times,serif" font-size="13.00" fill="#000000">61MB (0.79%)</text> | |
<text text-anchor="middle" x="208" y="-408.6" font-family="Times,serif" font-size="13.00" fill="#000000">of 1033.30MB (13.45%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N19->N8 --> | |
<g id="edge62" class="edge"> | |
<title>N19->N8</title> | |
<g id="a_edge62"><a xlink:title="go/parser.(*parser).parseBlockStmt -> go/parser.(*parser).parseStmtList (946.04MB)"> | |
<path fill="none" stroke="#b27744" d="M163.8606,-401.7778C143.2219,-381.9279 120.5267,-355.6385 108.2139,-327 99.847,-307.5394 96.9198,-284.4399 96.3232,-264.2886"/> | |
<polygon fill="#b27744" stroke="#b27744" points="99.8205,-264.014 96.2072,-254.0544 92.8209,-264.0934 99.8205,-264.014"/> | |
</a> | |
</g> | |
<g id="a_edge62-label"><a xlink:title="go/parser.(*parser).parseBlockStmt -> go/parser.(*parser).parseStmtList (946.04MB)"> | |
<text text-anchor="middle" x="140.8931" y="-304.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 946.04MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N19->N12 --> | |
<g id="edge102" class="edge"> | |
<title>N19->N12</title> | |
<g id="a_edge102"><a xlink:title="go/parser.(*parser).parseBlockStmt ... go/parser.(*parser).next (65.37MB)"> | |
<path fill="none" stroke="#b2b0aa" stroke-dasharray="1,5" d="M228.1378,-401.8117C235.4277,-388.3887 243.6676,-373.0504 251,-359 266.6526,-329.0066 257.7995,-310.8258 285.2139,-291 331.7402,-257.3526 355.8622,-277.6677 413,-272 824.177,-231.2142 1322.1301,-219.0214 1490.307,-215.9281"/> | |
<polygon fill="#b2b0aa" stroke="#b2b0aa" points="1490.4977,-219.4253 1500.433,-215.7456 1490.3715,-212.4264 1490.4977,-219.4253"/> | |
</a> | |
</g> | |
<g id="a_edge102-label"><a xlink:title="go/parser.(*parser).parseBlockStmt ... go/parser.(*parser).next (65.37MB)"> | |
<text text-anchor="middle" x="314.3931" y="-304.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 65.37MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN19_0 --> | |
<g id="NN19_0" class="node"> | |
<title>NN19_0</title> | |
<g id="a_NN19_0"><a xlink:title="61MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="235,-327 185,-327 181,-323 181,-291 231,-291 235,-295 235,-327"/> | |
<polyline fill="none" stroke="#000000" points="231,-323 181,-323 "/> | |
<polyline fill="none" stroke="#000000" points="231,-323 231,-291 "/> | |
<polyline fill="none" stroke="#000000" points="231,-323 235,-327 "/> | |
<text text-anchor="middle" x="208" y="-306.6" font-family="Times,serif" font-size="8.00" fill="#000000">48B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N19->NN19_0 --> | |
<g id="edge24" class="edge"> | |
<title>N19->NN19_0</title> | |
<g id="a_edge24"><a xlink:title="61MB"> | |
<path fill="none" stroke="#000000" d="M208,-401.7369C208,-381.2637 208,-356.1681 208,-337.2481"/> | |
<polygon fill="#000000" stroke="#000000" points="211.5001,-337.1726 208,-327.1727 204.5001,-337.1727 211.5001,-337.1726"/> | |
</a> | |
</g> | |
<g id="a_edge24-label"><a xlink:title="61MB"> | |
<text text-anchor="middle" x="227.6431" y="-347.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 61MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N20->N14 --> | |
<g id="edge58" class="edge"> | |
<title>N20->N14</title> | |
<g id="a_edge58"><a xlink:title="go/parser.(*parser).parseRhsList -> go/parser.(*parser).parseExprList (1115.45MB)"> | |
<path fill="none" stroke="#b26930" d="M1123,-1253.3363C1123,-1238.1723 1123,-1216.7259 1123,-1197.1386"/> | |
<polygon fill="#b26930" stroke="#b26930" points="1126.5001,-1197.1082 1123,-1187.1082 1119.5001,-1197.1083 1126.5001,-1197.1082"/> | |
</a> | |
</g> | |
<g id="a_edge58-label"><a xlink:title="go/parser.(*parser).parseRhsList -> go/parser.(*parser).parseExprList (1115.45MB)"> | |
<text text-anchor="middle" x="1157.8804" y="-1207.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 1115.45MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->N5 --> | |
<g id="edge48" class="edge"> | |
<title>N21->N5</title> | |
<g id="a_edge48"><a xlink:title="go/parser.(*parser).parseFile -> go/parser.(*parser).parseDecl (3660.57MB)"> | |
<path fill="none" stroke="#b22300" stroke-width="3" d="M958.6526,-2105.6926C906.5354,-2094.4781 838.0512,-2070.0059 806.2139,-2017 781.7668,-1976.2982 783.2445,-1919.2114 787.1757,-1884.658"/> | |
<polygon fill="#b22300" stroke="#b22300" stroke-width="3" points="790.6522,-1885.0642 788.4486,-1874.7011 783.7087,-1884.1765 790.6522,-1885.0642"/> | |
</a> | |
</g> | |
<g id="a_edge48-label"><a xlink:title="go/parser.(*parser).parseFile -> go/parser.(*parser).parseDecl (3660.57MB)"> | |
<text text-anchor="middle" x="842.3931" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 3660.57MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->N15 --> | |
<g id="edge89" class="edge"> | |
<title>N21->N15</title> | |
<g id="a_edge89"><a xlink:title="go/parser.(*parser).parseFile -> go/parser.(*parser).parseGenDecl (137.01MB)"> | |
<path fill="none" stroke="#b2ada2" d="M1093.4554,-2101.8294C1135.1313,-2092.3656 1183.3615,-2078.5678 1198,-2063 1244.6137,-2013.427 1205.7791,-1976.2708 1233.2139,-1914 1255.1106,-1864.2992 1262.5576,-1850.3355 1302,-1813 1327.7126,-1788.6609 1360.1959,-1767.3544 1389.7974,-1750.5968"/> | |
<polygon fill="#b2ada2" stroke="#b2ada2" points="1391.8434,-1753.4638 1398.8808,-1745.5439 1388.4405,-1747.3466 1391.8434,-1753.4638"/> | |
</a> | |
</g> | |
<g id="a_edge89-label"><a xlink:title="go/parser.(*parser).parseFile -> go/parser.(*parser).parseGenDecl (137.01MB)"> | |
<text text-anchor="middle" x="1264.8931" y="-1916.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 137.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN21_0 --> | |
<g id="NN21_0" class="node"> | |
<title>NN21_0</title> | |
<g id="a_NN21_0"><a xlink:title="18.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="973,-1999.5 923,-1999.5 919,-1995.5 919,-1963.5 969,-1963.5 973,-1967.5 973,-1999.5"/> | |
<polyline fill="none" stroke="#000000" points="969,-1995.5 919,-1995.5 "/> | |
<polyline fill="none" stroke="#000000" points="969,-1995.5 969,-1963.5 "/> | |
<polyline fill="none" stroke="#000000" points="969,-1995.5 973,-1999.5 "/> | |
<text text-anchor="middle" x="946" y="-1979.1" font-family="Times,serif" font-size="8.00" fill="#000000">80B..128B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->NN21_0 --> | |
<g id="edge25" class="edge"> | |
<title>N21->NN21_0</title> | |
<g id="a_edge25"><a xlink:title="18.50MB"> | |
<path fill="none" stroke="#000000" d="M979.4766,-2080.9265C974.0776,-2075.4198 969.1166,-2069.4038 965.2139,-2063 955.4085,-2046.9109 950.6068,-2026.2226 948.2555,-2009.7162"/> | |
<polygon fill="#000000" stroke="#000000" points="951.7037,-2009.0747 947.0363,-1999.5634 944.7536,-2009.9094 951.7037,-2009.0747"/> | |
</a> | |
</g> | |
<g id="a_edge25-label"><a xlink:title="18.50MB"> | |
<text text-anchor="middle" x="993.3931" y="-2044.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 18.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN21_1 --> | |
<g id="NN21_1" class="node"> | |
<title>NN21_1</title> | |
<g id="a_NN21_1"><a xlink:title="3.51MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1053,-1999.5 1003,-1999.5 999,-1995.5 999,-1963.5 1049,-1963.5 1053,-1967.5 1053,-1999.5"/> | |
<polyline fill="none" stroke="#000000" points="1049,-1995.5 999,-1995.5 "/> | |
<polyline fill="none" stroke="#000000" points="1049,-1995.5 1049,-1963.5 "/> | |
<polyline fill="none" stroke="#000000" points="1049,-1995.5 1053,-1999.5 "/> | |
<text text-anchor="middle" x="1026" y="-1979.1" font-family="Times,serif" font-size="8.00" fill="#000000">2kB..4kB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->NN21_1 --> | |
<g id="edge26" class="edge"> | |
<title>N21->NN21_1</title> | |
<g id="a_edge26"><a xlink:title="3.51MB"> | |
<path fill="none" stroke="#000000" d="M1026,-2080.9669C1026,-2058.9949 1026,-2030.7395 1026,-2009.9621"/> | |
<polygon fill="#000000" stroke="#000000" points="1029.5001,-2009.8514 1026,-1999.8514 1022.5001,-2009.8515 1029.5001,-2009.8514"/> | |
</a> | |
</g> | |
<g id="a_edge26-label"><a xlink:title="3.51MB"> | |
<text text-anchor="middle" x="1050.8931" y="-2044.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 3.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN21_2 --> | |
<g id="NN21_2" class="node"> | |
<title>NN21_2</title> | |
<g id="a_NN21_2"><a xlink:title="3MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1126,-1999.5 1076,-1999.5 1072,-1995.5 1072,-1963.5 1122,-1963.5 1126,-1967.5 1126,-1999.5"/> | |
<polyline fill="none" stroke="#000000" points="1122,-1995.5 1072,-1995.5 "/> | |
<polyline fill="none" stroke="#000000" points="1122,-1995.5 1122,-1963.5 "/> | |
<polyline fill="none" stroke="#000000" points="1122,-1995.5 1126,-1999.5 "/> | |
<text text-anchor="middle" x="1099" y="-1979.1" font-family="Times,serif" font-size="8.00" fill="#000000">256B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->NN21_2 --> | |
<g id="edge27" class="edge"> | |
<title>N21->NN21_2</title> | |
<g id="a_edge27"><a xlink:title="3MB"> | |
<path fill="none" stroke="#000000" d="M1064.0523,-2080.9269C1068.9069,-2075.3043 1073.4207,-2069.2561 1077,-2063 1086.3732,-2046.6168 1091.8835,-2026.0909 1095.0452,-2009.7368"/> | |
<polygon fill="#000000" stroke="#000000" points="1098.5293,-2010.1307 1096.8008,-1999.6779 1091.6336,-2008.9272 1098.5293,-2010.1307"/> | |
</a> | |
</g> | |
<g id="a_edge27-label"><a xlink:title="3MB"> | |
<text text-anchor="middle" x="1104.1431" y="-2044.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 3MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN21_3 --> | |
<g id="NN21_3" class="node"> | |
<title>NN21_3</title> | |
<g id="a_NN21_3"><a xlink:title="2.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1198,-1999.5 1148,-1999.5 1144,-1995.5 1144,-1963.5 1194,-1963.5 1198,-1967.5 1198,-1999.5"/> | |
<polyline fill="none" stroke="#000000" points="1194,-1995.5 1144,-1995.5 "/> | |
<polyline fill="none" stroke="#000000" points="1194,-1995.5 1194,-1963.5 "/> | |
<polyline fill="none" stroke="#000000" points="1194,-1995.5 1198,-1999.5 "/> | |
<text text-anchor="middle" x="1171" y="-1979.1" font-family="Times,serif" font-size="8.00" fill="#000000">16B..64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->NN21_3 --> | |
<g id="edge28" class="edge"> | |
<title>N21->NN21_3</title> | |
<g id="a_edge28"><a xlink:title="2.50MB"> | |
<path fill="none" stroke="#000000" d="M1093.2127,-2085.8753C1104.2415,-2079.3271 1114.9927,-2071.6951 1124,-2063 1139.7175,-2047.8272 1151.8408,-2026.2622 1159.8352,-2009.1259"/> | |
<polygon fill="#000000" stroke="#000000" points="1163.193,-2010.1891 1164.0611,-1999.6298 1156.7976,-2007.343 1163.193,-2010.1891"/> | |
</a> | |
</g> | |
<g id="a_edge28-label"><a xlink:title="2.50MB"> | |
<text text-anchor="middle" x="1168.8931" y="-2044.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 2.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->N28 --> | |
<g id="edge108" class="edge"> | |
<title>N21->N28</title> | |
<g id="a_edge108"><a xlink:title="go/parser.(*parser).parseFile -> go/parser.(*parser).expectSemi (42.50MB)"> | |
<path fill="none" stroke="#b2b1ad" d="M963.7285,-2080.9641C941.5746,-2064.9486 919.7157,-2043.4833 910,-2017 899.1318,-1987.3751 898.0215,-1975.1936 910,-1946 945.79,-1858.7741 999.2422,-1867.9266 1059,-1795 1134.4731,-1702.8948 1123.3132,-1655.6882 1209,-1573 1239.1714,-1543.8845 1261.9293,-1555.0187 1289,-1523 1296.5388,-1514.0832 1354.7868,-1367.7795 1380.2031,-1303.4495"/> | |
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="1383.5713,-1304.449 1383.9876,-1293.8623 1377.0602,-1301.8787 1383.5713,-1304.449"/> | |
</a> | |
</g> | |
<g id="a_edge108-label"><a xlink:title="go/parser.(*parser).parseFile -> go/parser.(*parser).expectSemi (42.50MB)"> | |
<text text-anchor="middle" x="1189.3931" y="-1629.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 42.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22->N19 --> | |
<g id="edge65" class="edge"> | |
<title>N22->N19</title> | |
<g id="a_edge65"><a xlink:title="go/parser.(*parser).parseIfStmt -> go/parser.(*parser).parseBlockStmt (773.60MB)"> | |
<path fill="none" stroke="#b28558" d="M416.4794,-1817.8348C391.4178,-1791.0255 364,-1752.2658 364,-1711 364,-1711 364,-1711 364,-568 364,-524.1709 327.0932,-492.3412 289.1824,-471.207"/> | |
<polygon fill="#b28558" stroke="#b28558" points="290.5324,-467.9599 280.0637,-466.3297 287.2308,-474.1324 290.5324,-467.9599"/> | |
</a> | |
</g> | |
<g id="a_edge65-label"><a xlink:title="go/parser.(*parser).parseIfStmt -> go/parser.(*parser).parseBlockStmt (773.60MB)"> | |
<text text-anchor="middle" x="395.8931" y="-1143.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 773.60MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN22_0 --> | |
<g id="NN22_0" class="node"> | |
<title>NN22_0</title> | |
<g id="a_NN22_0"><a xlink:title="66MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="484,-1729 434,-1729 430,-1725 430,-1693 480,-1693 484,-1697 484,-1729"/> | |
<polyline fill="none" stroke="#000000" points="480,-1725 430,-1725 "/> | |
<polyline fill="none" stroke="#000000" points="480,-1725 480,-1693 "/> | |
<polyline fill="none" stroke="#000000" points="480,-1725 484,-1729 "/> | |
<text text-anchor="middle" x="457" y="-1708.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22->NN22_0 --> | |
<g id="edge29" class="edge"> | |
<title>N22->NN22_0</title> | |
<g id="a_edge29"><a xlink:title="66MB"> | |
<path fill="none" stroke="#000000" d="M457,-1817.9176C457,-1793.5122 457,-1761.8948 457,-1739.3872"/> | |
<polygon fill="#000000" stroke="#000000" points="460.5001,-1739.1414 457,-1729.1414 453.5001,-1739.1414 460.5001,-1739.1414"/> | |
</a> | |
</g> | |
<g id="a_edge29-label"><a xlink:title="66MB"> | |
<text text-anchor="middle" x="476.6431" y="-1783.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 66MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22->N28 --> | |
<g id="edge109" class="edge"> | |
<title>N22->N28</title> | |
<g id="a_edge109"><a xlink:title="go/parser.(*parser).parseIfStmt -> go/parser.(*parser).expectSemi (40.56MB)"> | |
<path fill="none" stroke="#b2b1ad" d="M487.0611,-1817.8647C491.9577,-1810.6081 496.5481,-1802.8104 500,-1795 511.6564,-1768.6261 537.1955,-1564.9763 553.2139,-1541 564.8674,-1523.5571 845.1001,-1334.6373 865,-1328 950.2501,-1299.5663 1180.3759,-1324.8936 1269,-1310 1291.187,-1306.2714 1315.0135,-1299.8032 1335.7319,-1293.3375"/> | |
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="1336.8603,-1296.6514 1345.3228,-1290.2767 1334.732,-1289.9828 1336.8603,-1296.6514"/> | |
</a> | |
</g> | |
<g id="a_edge109-label"><a xlink:title="go/parser.(*parser).parseIfStmt -> go/parser.(*parser).expectSemi (40.56MB)"> | |
<text text-anchor="middle" x="582.3931" y="-1543.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 40.56MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N23->N17 --> | |
<g id="edge77" class="edge"> | |
<title>N23->N17</title> | |
<g id="a_edge77"><a xlink:title="go/parser.(*parser).parseOperand -> go/parser.(*parser).parseIdent (415.64MB)"> | |
<path fill="none" stroke="#b29e82" d="M973.3711,-638.243C979.7943,-631.6115 986.179,-624.736 992,-618 1016.5646,-589.5742 1017.9462,-578.6797 1042.2139,-550 1054.0997,-535.9532 1067.3214,-521.4597 1080.3186,-507.7591"/> | |
<polygon fill="#b29e82" stroke="#b29e82" points="1083.1281,-509.8851 1087.5062,-500.2371 1078.0671,-505.0491 1083.1281,-509.8851"/> | |
</a> | |
</g> | |
<g id="a_edge77-label"><a xlink:title="go/parser.(*parser).parseOperand -> go/parser.(*parser).parseIdent (415.64MB)"> | |
<text text-anchor="middle" x="1073.8931" y="-563.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 415.64MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN23_0 --> | |
<g id="NN23_0" class="node"> | |
<title>NN23_0</title> | |
<g id="a_NN23_0"><a xlink:title="193.01MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="954,-586 904,-586 900,-582 900,-550 950,-550 954,-554 954,-586"/> | |
<polyline fill="none" stroke="#000000" points="950,-582 900,-582 "/> | |
<polyline fill="none" stroke="#000000" points="950,-582 950,-550 "/> | |
<polyline fill="none" stroke="#000000" points="950,-582 954,-586 "/> | |
<text text-anchor="middle" x="927" y="-565.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N23->NN23_0 --> | |
<g id="edge30" class="edge"> | |
<title>N23->NN23_0</title> | |
<g id="a_edge30"><a xlink:title="193.01MB"> | |
<path fill="none" stroke="#000000" d="M927,-638.2313C927,-624.2136 927,-609.0998 927,-596.4969"/> | |
<polygon fill="#000000" stroke="#000000" points="930.5001,-596.1586 927,-586.1587 923.5001,-596.1587 930.5001,-596.1586"/> | |
</a> | |
</g> | |
<g id="a_edge30-label"><a xlink:title="193.01MB"> | |
<text text-anchor="middle" x="958.8931" y="-606.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 193.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N23->N33 --> | |
<g id="edge103" class="edge"> | |
<title>N23->N33</title> | |
<g id="a_edge103"><a xlink:title="go/parser.(*parser).parseOperand ... go/parser.(*parser).parseBody (61.51MB)"> | |
<path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M847.7528,-650.3727C814.3086,-634.3064 776.4361,-612.5747 747.2139,-586 713.7577,-555.575 686.3418,-511.4606 669.0597,-479.4078"/> | |
<polygon fill="#b2b0ab" stroke="#b2b0ab" points="672.0095,-477.4985 664.242,-470.2931 665.8208,-480.7697 672.0095,-477.4985"/> | |
</a> | |
</g> | |
<g id="a_edge103-label"><a xlink:title="go/parser.(*parser).parseOperand ... go/parser.(*parser).parseBody (61.51MB)"> | |
<text text-anchor="middle" x="776.3931" y="-563.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 61.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N24->N4 --> | |
<g id="edge87" class="edge"> | |
<title>N24->N4</title> | |
<g id="a_edge87"><a xlink:title="go/types.(*Checker).rawExpr -> go/types.(*Checker).recordTypeAndValue (156.43MB)"> | |
<path fill="none" stroke="#b2aca0" d="M1540.1985,-2206.9619C1526.6489,-2185.3006 1508,-2149.2635 1508,-2115 1508,-2115 1508,-2115 1508,-1854.5 1508,-1808.7713 1540.055,-1803.26 1580,-1781 1583.1297,-1779.2559 1645.4634,-1761.5946 1706.7207,-1744.4506"/> | |
<polygon fill="#b2aca0" stroke="#b2aca0" points="1707.846,-1747.7703 1716.5337,-1741.706 1705.9605,-1741.029 1707.846,-1747.7703"/> | |
</a> | |
</g> | |
<g id="a_edge87-label"><a xlink:title="go/types.(*Checker).rawExpr -> go/types.(*Checker).recordTypeAndValue (156.43MB)"> | |
<text text-anchor="middle" x="1539.8931" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 156.43MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30 --> | |
<g id="node30" class="node"> | |
<title>N30</title> | |
<g id="a_node30"><a xlink:title="go/types.(*Checker).exprInternal (601.59MB)"> | |
<polygon fill="#ede8e3" stroke="#b2916c" points="1731.9937,-2141.5 1636.0063,-2141.5 1636.0063,-2088.5 1731.9937,-2088.5 1731.9937,-2141.5"/> | |
<text text-anchor="middle" x="1684" y="-2130.3" font-family="Times,serif" font-size="9.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1684" y="-2121.3" font-family="Times,serif" font-size="9.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1684" y="-2112.3" font-family="Times,serif" font-size="9.00" fill="#000000">exprInternal</text> | |
<text text-anchor="middle" x="1684" y="-2103.3" font-family="Times,serif" font-size="9.00" fill="#000000">1.55MB (0.02%)</text> | |
<text text-anchor="middle" x="1684" y="-2094.3" font-family="Times,serif" font-size="9.00" fill="#000000">of 601.59MB (7.83%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N24->N30 --> | |
<g id="edge70" class="edge"> | |
<title>N24->N30</title> | |
<g id="a_edge70"><a xlink:title="go/types.(*Checker).rawExpr -> go/types.(*Checker).exprInternal (601.59MB)"> | |
<path fill="none" stroke="#b2916c" d="M1562.0533,-2206.7371C1567.8559,-2194.1119 1576.6899,-2178.1976 1588.2139,-2167 1600.4163,-2155.1432 1607.0326,-2157.0906 1622,-2149 1623.7009,-2148.0806 1625.4272,-2147.1456 1627.1693,-2146.2004"/> | |
<polygon fill="#b2916c" stroke="#b2916c" points="1628.8552,-2149.2677 1635.9675,-2141.4149 1625.5105,-2143.1185 1628.8552,-2149.2677"/> | |
</a> | |
</g> | |
<g id="a_edge70-label"><a xlink:title="go/types.(*Checker).rawExpr -> go/types.(*Checker).exprInternal (601.59MB)"> | |
<text text-anchor="middle" x="1619.8931" y="-2169.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 601.59MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25->N12 --> | |
<g id="edge114" class="edge"> | |
<title>N25->N12</title> | |
<g id="a_edge114"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).next (25.14MB)"> | |
<path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M1505.3691,-1359.7411C1507.4598,-1354.0759 1509.5241,-1347.8635 1511,-1342 1575.3222,-1086.4639 1587,-1017.5072 1587,-754 1587,-754 1587,-754 1587,-309 1587,-286.0659 1577.1572,-262.128 1567.4904,-244.1485"/> | |
<polygon fill="#b2b1af" stroke="#b2b1af" points="1570.4717,-242.3101 1562.5044,-235.3264 1564.3777,-245.7543 1570.4717,-242.3101"/> | |
</a> | |
</g> | |
<g id="a_edge114-label"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).next (25.14MB)"> | |
<text text-anchor="middle" x="1614.3931" y="-805.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 25.14MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25->N17 --> | |
<g id="edge93" class="edge"> | |
<title>N25->N17</title> | |
<g id="a_edge93"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).parseIdent (130.01MB)"> | |
<path fill="none" stroke="#b2aea3" stroke-dasharray="1,5" d="M1497,-1359.9787C1497,-1338.5734 1497,-1303.638 1497,-1273.5 1497,-1273.5 1497,-1273.5 1497,-956 1497,-761.2476 1615.0284,-662.0835 1484,-518 1455.2906,-486.4301 1354.2162,-465.3055 1270.7043,-452.8176"/> | |
<polygon fill="#b2aea3" stroke="#b2aea3" points="1271.0151,-449.3258 1260.613,-451.3374 1269.9991,-456.2517 1271.0151,-449.3258"/> | |
</a> | |
</g> | |
<g id="a_edge93-label"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).parseIdent (130.01MB)"> | |
<text text-anchor="middle" x="1532.8931" y="-906.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 130.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25->N28 --> | |
<g id="edge106" class="edge"> | |
<title>N25->N28</title> | |
<g id="a_edge106"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).expectSemi (44.03MB)"> | |
<path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1450.3364,-1360.2788C1441.6295,-1355.1918 1433.1126,-1349.1049 1426.2139,-1342 1415.6614,-1331.1321 1407.7242,-1316.3669 1402.1649,-1303.3273"/> | |
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="1405.3188,-1301.786 1398.3733,-1293.7853 1398.8135,-1304.371 1405.3188,-1301.786"/> | |
</a> | |
</g> | |
<g id="a_edge106-label"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).expectSemi (44.03MB)"> | |
<text text-anchor="middle" x="1454.3931" y="-1330.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 44.03MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N37 --> | |
<g id="node37" class="node"> | |
<title>N37</title> | |
<g id="a_node37"><a xlink:title="go/parser.(*parser).parseParameters (412.58MB)"> | |
<polygon fill="#edeae6" stroke="#b29e82" points="1793.5472,-1310 1662.4528,-1310 1662.4528,-1237 1793.5472,-1237 1793.5472,-1310"/> | |
<text text-anchor="middle" x="1728" y="-1295.6" font-family="Times,serif" font-size="13.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1728" y="-1282.6" font-family="Times,serif" font-size="13.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1728" y="-1269.6" font-family="Times,serif" font-size="13.00" fill="#000000">parseParameters</text> | |
<text text-anchor="middle" x="1728" y="-1256.6" font-family="Times,serif" font-size="13.00" fill="#000000">53MB (0.69%)</text> | |
<text text-anchor="middle" x="1728" y="-1243.6" font-family="Times,serif" font-size="13.00" fill="#000000">of 412.58MB (5.37%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25->N37 --> | |
<g id="edge112" class="edge"> | |
<title>N25->N37</title> | |
<g id="a_edge112"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).parseParameters (30.51MB)"> | |
<path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1540.4493,-1359.9682C1572.0159,-1345.4148 1615.5374,-1325.3496 1652.7098,-1308.2117"/> | |
<polygon fill="#b2b1ae" stroke="#b2b1ae" points="1654.3965,-1311.2882 1662.0124,-1303.9228 1651.4657,-1304.9313 1654.3965,-1311.2882"/> | |
</a> | |
</g> | |
<g id="a_edge112-label"><a xlink:title="go/parser.(*parser).tryIdentOrType ... go/parser.(*parser).parseParameters (30.51MB)"> | |
<text text-anchor="middle" x="1633.3931" y="-1330.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 30.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N26 --> | |
<g id="node26" class="node"> | |
<title>N26</title> | |
<g id="a_node26"><a xlink:title="go/ast.NewObj (289.52MB)"> | |
<polygon fill="#edebe8" stroke="#b2a590" points="1875.4939,-841 1718.5061,-841 1718.5061,-779 1875.4939,-779 1875.4939,-841"/> | |
<text text-anchor="middle" x="1797" y="-822.6" font-family="Times,serif" font-size="18.00" fill="#000000">go/ast</text> | |
<text text-anchor="middle" x="1797" y="-804.6" font-family="Times,serif" font-size="18.00" fill="#000000">NewObj</text> | |
<text text-anchor="middle" x="1797" y="-786.6" font-family="Times,serif" font-size="18.00" fill="#000000">289.52MB (3.77%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN26_0 --> | |
<g id="NN26_0" class="node"> | |
<title>NN26_0</title> | |
<g id="a_NN26_0"><a xlink:title="289.52MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1824,-700.5 1774,-700.5 1770,-696.5 1770,-664.5 1820,-664.5 1824,-668.5 1824,-700.5"/> | |
<polyline fill="none" stroke="#000000" points="1820,-696.5 1770,-696.5 "/> | |
<polyline fill="none" stroke="#000000" points="1820,-696.5 1820,-664.5 "/> | |
<polyline fill="none" stroke="#000000" points="1820,-696.5 1824,-700.5 "/> | |
<text text-anchor="middle" x="1797" y="-680.1" font-family="Times,serif" font-size="8.00" fill="#000000">80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N26->NN26_0 --> | |
<g id="edge31" class="edge"> | |
<title>N26->NN26_0</title> | |
<g id="a_edge31"><a xlink:title="289.52MB"> | |
<path fill="none" stroke="#000000" d="M1797,-778.81C1797,-758.0627 1797,-731.0261 1797,-710.8821"/> | |
<polygon fill="#000000" stroke="#000000" points="1800.5001,-710.7655 1797,-700.7655 1793.5001,-710.7656 1800.5001,-710.7655"/> | |
</a> | |
</g> | |
<g id="a_edge31-label"><a xlink:title="289.52MB"> | |
<text text-anchor="middle" x="1828.8931" y="-749.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 289.52MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N27 --> | |
<g id="node27" class="node"> | |
<title>N27</title> | |
<g id="a_node27"><a xlink:title="bufio.NewReaderSize (500.91MB)"> | |
<polygon fill="#ede9e5" stroke="#b29878" points="1471.9087,-2017 1292.0913,-2017 1292.0913,-1946 1471.9087,-1946 1471.9087,-2017"/> | |
<text text-anchor="middle" x="1382" y="-1996.2" font-family="Times,serif" font-size="21.00" fill="#000000">bufio</text> | |
<text text-anchor="middle" x="1382" y="-1975.2" font-family="Times,serif" font-size="21.00" fill="#000000">NewReaderSize</text> | |
<text text-anchor="middle" x="1382" y="-1954.2" font-family="Times,serif" font-size="21.00" fill="#000000">500.91MB (6.52%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN27_0 --> | |
<g id="NN27_0" class="node"> | |
<title>NN27_0</title> | |
<g id="a_NN27_0"><a xlink:title="490.41MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1409,-1872.5 1359,-1872.5 1355,-1868.5 1355,-1836.5 1405,-1836.5 1409,-1840.5 1409,-1872.5"/> | |
<polyline fill="none" stroke="#000000" points="1405,-1868.5 1355,-1868.5 "/> | |
<polyline fill="none" stroke="#000000" points="1405,-1868.5 1405,-1836.5 "/> | |
<polyline fill="none" stroke="#000000" points="1405,-1868.5 1409,-1872.5 "/> | |
<text text-anchor="middle" x="1382" y="-1852.1" font-family="Times,serif" font-size="8.00" fill="#000000">4kB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N27->NN27_0 --> | |
<g id="edge32" class="edge"> | |
<title>N27->NN27_0</title> | |
<g id="a_edge32"><a xlink:title="490.41MB"> | |
<path fill="none" stroke="#000000" d="M1382,-1945.7854C1382,-1925.9147 1382,-1901.5223 1382,-1882.9525"/> | |
<polygon fill="#000000" stroke="#000000" points="1385.5001,-1882.7699 1382,-1872.7699 1378.5001,-1882.77 1385.5001,-1882.7699"/> | |
</a> | |
</g> | |
<g id="a_edge32-label"><a xlink:title="490.41MB"> | |
<text text-anchor="middle" x="1413.8931" y="-1916.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 490.41MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N28->N12 --> | |
<g id="edge76" class="edge"> | |
<title>N28->N12</title> | |
<g id="a_edge76"><a xlink:title="go/parser.(*parser).expectSemi -> go/parser.(*parser).next (452.92MB)"> | |
<path fill="none" stroke="#b29b7d" d="M1408.4348,-1253.12C1425.8924,-1229.363 1451,-1188.2066 1451,-1148 1451,-1148 1451,-1148 1451,-810 1451,-676.054 1549,-658.946 1549,-525 1549,-525 1549,-525 1549,-309 1549,-287.7184 1549,-263.7266 1549,-245.3081"/> | |
<polygon fill="#b29b7d" stroke="#b29b7d" points="1552.5001,-245.1702 1549,-235.1702 1545.5001,-245.1702 1552.5001,-245.1702"/> | |
</a> | |
</g> | |
<g id="a_edge76-label"><a xlink:title="go/parser.(*parser).expectSemi -> go/parser.(*parser).next (452.92MB)"> | |
<text text-anchor="middle" x="1490.8931" y="-749.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 452.92MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N29->N4 --> | |
<g id="edge82" class="edge"> | |
<title>N29->N4</title> | |
<g id="a_edge82"><a xlink:title="go/types.(*Checker).checkFiles ... go/types.(*Checker).recordTypeAndValue (289.63MB)"> | |
<path fill="none" stroke="#b2a590" stroke-dasharray="1,5" d="M1100.7246,-2469.88C1281.8512,-2459.8592 1886,-2420.4429 1886,-2340.5 1886,-2340.5 1886,-2340.5 1886,-1854.5 1886,-1826.1959 1876.0601,-1796.9511 1864.3401,-1772.3062"/> | |
<polygon fill="#b2a590" stroke="#b2a590" points="1867.3536,-1770.5046 1859.7781,-1763.0976 1861.0811,-1773.6121 1867.3536,-1770.5046"/> | |
</a> | |
</g> | |
<g id="a_edge82-label"><a xlink:title="go/types.(*Checker).checkFiles ... go/types.(*Checker).recordTypeAndValue (289.63MB)"> | |
<text text-anchor="middle" x="1917.8931" y="-2110.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 289.63MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N29->N18 --> | |
<g id="edge64" class="edge"> | |
<title>N29->N18</title> | |
<g id="a_edge64"><a xlink:title="go/types.(*Checker).checkFiles ... go/types.(*Checker).objDecl (835.81MB)"> | |
<path fill="none" stroke="#b28051" stroke-dasharray="1,5" d="M1100.633,-2459.239C1194.1243,-2434.7532 1393.4313,-2382.5537 1493.7189,-2356.2879"/> | |
<polygon fill="#b28051" stroke="#b28051" points="1494.6137,-2359.6717 1503.4006,-2353.7522 1492.8401,-2352.9001 1494.6137,-2359.6717"/> | |
</a> | |
</g> | |
<g id="a_edge64-label"><a xlink:title="go/types.(*Checker).checkFiles ... go/types.(*Checker).objDecl (835.81MB)"> | |
<text text-anchor="middle" x="1378.8931" y="-2396.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 835.81MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30->N4 --> | |
<g id="edge91" class="edge"> | |
<title>N30->N4</title> | |
<g id="a_edge91"><a xlink:title="go/types.(*Checker).exprInternal ... go/types.(*Checker).recordTypeAndValue (134.38MB)"> | |
<path fill="none" stroke="#b2ada2" stroke-dasharray="1,5" d="M1716.1734,-2088.2278C1723.1651,-2080.7908 1729.7363,-2072.205 1734,-2063 1761.9778,-2002.5984 1733.7894,-1978.7549 1749.2139,-1914 1760.8725,-1865.0548 1781.4828,-1812.0361 1798.5601,-1772.4596"/> | |
<polygon fill="#b2ada2" stroke="#b2ada2" points="1801.8047,-1773.775 1802.5927,-1763.2095 1795.388,-1770.9775 1801.8047,-1773.775"/> | |
</a> | |
</g> | |
<g id="a_edge91-label"><a xlink:title="go/types.(*Checker).exprInternal ... go/types.(*Checker).recordTypeAndValue (134.38MB)"> | |
<text text-anchor="middle" x="1780.8931" y="-1916.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 134.38MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30->N18 --> | |
<g id="edge85" class="edge"> | |
<title>N30->N18</title> | |
<g id="a_edge85"><a xlink:title="go/types.(*Checker).exprInternal ... go/types.(*Checker).objDecl (207.40MB)"> | |
<path fill="none" stroke="#b2aa9a" stroke-dasharray="1,5" d="M1679.1973,-2141.6203C1671.736,-2177.389 1654.6902,-2241.6973 1622,-2287 1614.6522,-2297.1827 1604.8525,-2306.4198 1594.9855,-2314.2432"/> | |
<polygon fill="#b2aa9a" stroke="#b2aa9a" points="1592.6065,-2311.6538 1586.7339,-2320.4721 1596.8239,-2317.2407 1592.6065,-2311.6538"/> | |
</a> | |
</g> | |
<g id="a_edge85-label"><a xlink:title="go/types.(*Checker).exprInternal ... go/types.(*Checker).objDecl (207.40MB)"> | |
<text text-anchor="middle" x="1694.8931" y="-2222.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 207.40MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N36 --> | |
<g id="node36" class="node"> | |
<title>N36</title> | |
<g id="a_node36"><a xlink:title="go/types.(*Checker).indexedElts (551.56MB)"> | |
<polygon fill="#ede9e4" stroke="#b29572" points="1719.7703,-2013 1606.2297,-2013 1606.2297,-1950 1719.7703,-1950 1719.7703,-2013"/> | |
<text text-anchor="middle" x="1663" y="-2000.2" font-family="Times,serif" font-size="11.00" fill="#000000">go/types</text> | |
<text text-anchor="middle" x="1663" y="-1989.2" font-family="Times,serif" font-size="11.00" fill="#000000">(*Checker)</text> | |
<text text-anchor="middle" x="1663" y="-1978.2" font-family="Times,serif" font-size="11.00" fill="#000000">indexedElts</text> | |
<text text-anchor="middle" x="1663" y="-1967.2" font-family="Times,serif" font-size="11.00" fill="#000000">24.87MB (0.32%)</text> | |
<text text-anchor="middle" x="1663" y="-1956.2" font-family="Times,serif" font-size="11.00" fill="#000000">of 551.56MB (7.18%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30->N36 --> | |
<g id="edge72" class="edge"> | |
<title>N30->N36</title> | |
<g id="a_edge72"><a xlink:title="go/types.(*Checker).exprInternal -> go/types.(*Checker).indexedElts (551.56MB)"> | |
<path fill="none" stroke="#b29572" d="M1676.0322,-2088.4732C1673.8495,-2080.3616 1671.6829,-2071.3712 1670.2139,-2063 1667.9472,-2050.0836 1666.3772,-2035.884 1665.2962,-2023.0066"/> | |
<polygon fill="#b29572" stroke="#b29572" points="1668.7842,-2022.7155 1664.5301,-2013.0123 1661.8047,-2023.2506 1668.7842,-2022.7155"/> | |
</a> | |
</g> | |
<g id="a_edge72-label"><a xlink:title="go/types.(*Checker).exprInternal -> go/types.(*Checker).indexedElts (551.56MB)"> | |
<text text-anchor="middle" x="1701.8931" y="-2044.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 551.56MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31->N17 --> | |
<g id="edge115" class="edge"> | |
<title>N31->N17</title> | |
<g id="a_edge115"><a xlink:title="go/parser.(*parser).parseValueSpec ... go/parser.(*parser).parseIdent (19.50MB)"> | |
<path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1148.213,-1453.6721C1139.0441,-1447.3023 1130.284,-1440.0617 1123,-1432 1101.0863,-1407.7465 1097.0636,-1390.8032 1108,-1360 1114.1311,-1342.7312 1118.0116,-1336.9541 1134,-1328 1186.8128,-1298.4229 1218.2009,-1342.9158 1269,-1310 1322.9288,-1275.0563 1322.9545,-1247.3604 1345,-1187 1381.6839,-1086.5601 1360.5738,-1054.1102 1380.2139,-949 1398.6271,-850.4553 1418.8676,-828.6302 1430,-729 1434.5899,-687.9223 1433.2959,-677.2017 1430,-636 1425.7643,-583.0492 1445.922,-558.0273 1411,-518 1391.568,-495.7272 1329.052,-476.2764 1270.078,-462.1896"/> | |
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="1270.8049,-458.7652 1260.2697,-459.8873 1269.2052,-465.5799 1270.8049,-458.7652"/> | |
</a> | |
</g> | |
<g id="a_edge115-label"><a xlink:title="go/parser.(*parser).parseValueSpec ... go/parser.(*parser).parseIdent (19.50MB)"> | |
<text text-anchor="middle" x="1408.3931" y="-951.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 19.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31->N20 --> | |
<g id="edge78" class="edge"> | |
<title>N31->N20</title> | |
<g id="a_edge78"><a xlink:title="go/parser.(*parser).parseValueSpec -> go/parser.(*parser).parseRhsList (382.04MB)"> | |
<path fill="none" stroke="#b2a086" d="M1148.2962,-1470.7355C1088.0732,-1454.7229 1005.6843,-1428.3102 988.2139,-1400 962.3016,-1358.0102 1016.1323,-1320.8284 1063.2675,-1297.8252"/> | |
<polygon fill="#b2a086" stroke="#b2a086" points="1065.0392,-1300.8589 1072.5797,-1293.4164 1062.0438,-1294.5322 1065.0392,-1300.8589"/> | |
</a> | |
</g> | |
<g id="a_edge78-label"><a xlink:title="go/parser.(*parser).parseValueSpec -> go/parser.(*parser).parseRhsList (382.04MB)"> | |
<text text-anchor="middle" x="1019.8931" y="-1375.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 382.04MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31->N28 --> | |
<g id="edge111" class="edge"> | |
<title>N31->N28</title> | |
<g id="a_edge111"><a xlink:title="go/parser.(*parser).parseValueSpec -> go/parser.(*parser).expectSemi (37.01MB)"> | |
<path fill="none" stroke="#b2b1ae" d="M1158.6223,-1449.7996C1127.0493,-1424.3103 1097.9855,-1389.7221 1121.2139,-1360 1177.8428,-1287.5399 1236.008,-1342.5986 1322,-1310 1330.7527,-1306.6819 1339.8174,-1302.5364 1348.4047,-1298.2412"/> | |
<polygon fill="#b2b1ae" stroke="#b2b1ae" points="1350.2133,-1301.2466 1357.4981,-1293.5536 1347.0059,-1295.0246 1350.2133,-1301.2466"/> | |
</a> | |
</g> | |
<g id="a_edge111-label"><a xlink:title="go/parser.(*parser).parseValueSpec -> go/parser.(*parser).expectSemi (37.01MB)"> | |
<text text-anchor="middle" x="1149.3931" y="-1375.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 37.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN31_0 --> | |
<g id="NN31_0" class="node"> | |
<title>NN31_0</title> | |
<g id="a_NN31_0"><a xlink:title="50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1241,-1398 1191,-1398 1187,-1394 1187,-1362 1237,-1362 1241,-1366 1241,-1398"/> | |
<polyline fill="none" stroke="#000000" points="1237,-1394 1187,-1394 "/> | |
<polyline fill="none" stroke="#000000" points="1237,-1394 1237,-1362 "/> | |
<polyline fill="none" stroke="#000000" points="1237,-1394 1241,-1398 "/> | |
<text text-anchor="middle" x="1214" y="-1377.6" font-family="Times,serif" font-size="8.00" fill="#000000">80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31->NN31_0 --> | |
<g id="edge33" class="edge"> | |
<title>N31->NN31_0</title> | |
<g id="a_edge33"><a xlink:title="50MB"> | |
<path fill="none" stroke="#000000" d="M1214,-1449.8487C1214,-1436.2166 1214,-1420.972 1214,-1408.2112"/> | |
<polygon fill="#000000" stroke="#000000" points="1217.5001,-1408.1662 1214,-1398.1662 1210.5001,-1408.1663 1217.5001,-1408.1662"/> | |
</a> | |
</g> | |
<g id="a_edge33-label"><a xlink:title="50MB"> | |
<text text-anchor="middle" x="1233.6431" y="-1420.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->N12 --> | |
<g id="edge107" class="edge"> | |
<title>N32->N12</title> | |
<g id="a_edge107"><a xlink:title="go/parser.(*parser).parseCallOrConversion ... go/parser.(*parser).next (43.20MB)"> | |
<path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1197.6154,-635.9131C1160.3991,-609.6507 1112.3078,-576.8317 1068,-550 1027.5948,-525.5317 998.52,-540.5029 974.2139,-500 946.0843,-453.126 956.3054,-428.6501 974.2139,-377 990.1572,-331.0175 1002.3323,-319.1967 1042,-291 1113.0352,-240.5066 1372.094,-222.791 1489.93,-217.2532"/> | |
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="1490.3742,-220.7367 1500.2043,-216.7845 1490.0551,-213.7439 1490.3742,-220.7367"/> | |
</a> | |
</g> | |
<g id="a_edge107-label"><a xlink:title="go/parser.(*parser).parseCallOrConversion ... go/parser.(*parser).next (43.20MB)"> | |
<text text-anchor="middle" x="1002.3931" y="-434.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 43.20MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->N16 --> | |
<g id="edge81" class="edge"> | |
<title>N32->N16</title> | |
<g id="a_edge81"><a xlink:title="go/parser.(*parser).parseCallOrConversion ... go/parser.(*parser).parseExpr (297.07MB)"> | |
<path fill="none" stroke="#b2a58f" stroke-dasharray="1,5" d="M1217.2755,-729.0959C1205.8691,-740.0518 1193.3337,-751.3402 1181,-761 1107.1177,-818.8647 1083.7174,-826.8569 1002,-873 994.0659,-877.4801 985.5419,-882.0347 977.1873,-886.3611"/> | |
<polygon fill="#b2a58f" stroke="#b2a58f" points="975.5292,-883.278 968.2242,-890.9518 978.7202,-889.5083 975.5292,-883.278"/> | |
</a> | |
</g> | |
<g id="a_edge81-label"><a xlink:title="go/parser.(*parser).parseCallOrConversion ... go/parser.(*parser).parseExpr (297.07MB)"> | |
<text text-anchor="middle" x="1186.8931" y="-805.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 297.07MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN32_0 --> | |
<g id="NN32_0" class="node"> | |
<title>NN32_0</title> | |
<g id="a_NN32_0"><a xlink:title="188.51MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1202,-586 1152,-586 1148,-582 1148,-550 1198,-550 1202,-554 1202,-586"/> | |
<polyline fill="none" stroke="#000000" points="1198,-582 1148,-582 "/> | |
<polyline fill="none" stroke="#000000" points="1198,-582 1198,-550 "/> | |
<polyline fill="none" stroke="#000000" points="1198,-582 1202,-586 "/> | |
<text text-anchor="middle" x="1175" y="-565.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->NN32_0 --> | |
<g id="edge34" class="edge"> | |
<title>N32->NN32_0</title> | |
<g id="a_edge34"><a xlink:title="188.51MB"> | |
<path fill="none" stroke="#000000" d="M1208.0319,-635.6697C1202.9982,-630.0157 1198.2722,-624.0801 1194.2139,-618 1189.6909,-611.2237 1186.0134,-603.2295 1183.1324,-595.6447"/> | |
<polygon fill="#000000" stroke="#000000" points="1186.3862,-594.3451 1179.7997,-586.0464 1179.7734,-596.6412 1186.3862,-594.3451"/> | |
</a> | |
</g> | |
<g id="a_edge34-label"><a xlink:title="188.51MB"> | |
<text text-anchor="middle" x="1225.8931" y="-606.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 188.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN32_1 --> | |
<g id="NN32_1" class="node"> | |
<title>NN32_1</title> | |
<g id="a_NN32_1"><a xlink:title="26.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1289,-586 1239,-586 1235,-582 1235,-550 1285,-550 1289,-554 1289,-586"/> | |
<polyline fill="none" stroke="#000000" points="1285,-582 1235,-582 "/> | |
<polyline fill="none" stroke="#000000" points="1285,-582 1285,-550 "/> | |
<polyline fill="none" stroke="#000000" points="1285,-582 1289,-586 "/> | |
<text text-anchor="middle" x="1262" y="-565.6" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->NN32_1 --> | |
<g id="edge35" class="edge"> | |
<title>N32->NN32_1</title> | |
<g id="a_edge35"><a xlink:title="26.50MB"> | |
<path fill="none" stroke="#000000" d="M1262,-635.9285C1262,-622.5609 1262,-608.388 1262,-596.466"/> | |
<polygon fill="#000000" stroke="#000000" points="1265.5001,-596.2378 1262,-586.2378 1258.5001,-596.2378 1265.5001,-596.2378"/> | |
</a> | |
</g> | |
<g id="a_edge35-label"><a xlink:title="26.50MB"> | |
<text text-anchor="middle" x="1290.3931" y="-606.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 26.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN32_2 --> | |
<g id="NN32_2" class="node"> | |
<title>NN32_2</title> | |
<g id="a_NN32_2"><a xlink:title="14MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1369,-586 1319,-586 1315,-582 1315,-550 1365,-550 1369,-554 1369,-586"/> | |
<polyline fill="none" stroke="#000000" points="1365,-582 1315,-582 "/> | |
<polyline fill="none" stroke="#000000" points="1365,-582 1365,-550 "/> | |
<polyline fill="none" stroke="#000000" points="1365,-582 1369,-586 "/> | |
<text text-anchor="middle" x="1342" y="-565.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->NN32_2 --> | |
<g id="edge36" class="edge"> | |
<title>N32->NN32_2</title> | |
<g id="a_edge36"><a xlink:title="14MB"> | |
<path fill="none" stroke="#000000" d="M1306.8807,-635.9783C1311.5882,-630.135 1316.0783,-624.0722 1320,-618 1324.4361,-611.1313 1328.3796,-603.2178 1331.659,-595.7423"/> | |
<polygon fill="#000000" stroke="#000000" points="1334.9801,-596.8704 1335.5733,-586.2922 1328.5129,-594.1917 1334.9801,-596.8704"/> | |
</a> | |
</g> | |
<g id="a_edge36-label"><a xlink:title="14MB"> | |
<text text-anchor="middle" x="1346.6431" y="-606.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 14MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N33->N8 --> | |
<g id="edge52" class="edge"> | |
<title>N33->N8</title> | |
<g id="a_edge52"><a xlink:title="go/parser.(*parser).parseBody -> go/parser.(*parser).parseStmtList (2175.82MB)"> | |
<path fill="none" stroke="#b23800" stroke-width="2" d="M586.8188,-406.8527C523.5963,-375.324 422.3576,-326.6091 332,-291 284.4251,-272.2512 230.1678,-254.3562 185.9875,-240.6454"/> | |
<polygon fill="#b23800" stroke="#b23800" stroke-width="2" points="187.0191,-237.301 176.4316,-237.6962 184.9547,-243.9897 187.0191,-237.301"/> | |
</a> | |
</g> | |
<g id="a_edge52-label"><a xlink:title="go/parser.(*parser).parseBody -> go/parser.(*parser).parseStmtList (2175.82MB)"> | |
<text text-anchor="middle" x="451.3931" y="-304.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 2175.82MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N33->N12 --> | |
<g id="edge110" class="edge"> | |
<title>N33->N12</title> | |
<g id="a_edge110"><a xlink:title="go/parser.(*parser).parseBody ... go/parser.(*parser).next (39.16MB)"> | |
<path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M605.6795,-406.7613C567.9901,-375.3818 524.0585,-326.9782 556.2139,-291 587.5077,-255.9858 1281.1838,-225.6478 1490.0301,-217.2816"/> | |
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="1490.3345,-220.7723 1500.1872,-216.8767 1490.0557,-213.7779 1490.3345,-220.7723"/> | |
</a> | |
</g> | |
<g id="a_edge110-label"><a xlink:title="go/parser.(*parser).parseBody ... go/parser.(*parser).next (39.16MB)"> | |
<text text-anchor="middle" x="585.3931" y="-304.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 39.16MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN33_0 --> | |
<g id="NN33_0" class="node"> | |
<title>NN33_0</title> | |
<g id="a_NN33_0"><a xlink:title="24MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="676,-327 626,-327 622,-323 622,-291 672,-291 676,-295 676,-327"/> | |
<polyline fill="none" stroke="#000000" points="672,-323 622,-323 "/> | |
<polyline fill="none" stroke="#000000" points="672,-323 672,-291 "/> | |
<polyline fill="none" stroke="#000000" points="672,-323 676,-327 "/> | |
<text text-anchor="middle" x="649" y="-306.6" font-family="Times,serif" font-size="8.00" fill="#000000">48B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N33->NN33_0 --> | |
<g id="edge37" class="edge"> | |
<title>N33->NN33_0</title> | |
<g id="a_edge37"><a xlink:title="24MB"> | |
<path fill="none" stroke="#000000" d="M649,-406.8207C649,-385.6211 649,-357.9562 649,-337.4583"/> | |
<polygon fill="#000000" stroke="#000000" points="652.5001,-337.1801 649,-327.1801 645.5001,-337.1802 652.5001,-337.1801"/> | |
</a> | |
</g> | |
<g id="a_edge37-label"><a xlink:title="24MB"> | |
<text text-anchor="middle" x="668.6431" y="-347.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 24MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34 --> | |
<g id="node34" class="node"> | |
<title>N34</title> | |
<g id="a_node34"><a xlink:title="go/parser.(*parser).parseParameterList (351.08MB)"> | |
<polygon fill="#edebe7" stroke="#b2a289" points="1752.4352,-1059 1611.5648,-1059 1611.5648,-981 1752.4352,-981 1752.4352,-1059"/> | |
<text text-anchor="middle" x="1682" y="-1043.8" font-family="Times,serif" font-size="14.00" fill="#000000">go/parser</text> | |
<text text-anchor="middle" x="1682" y="-1029.8" font-family="Times,serif" font-size="14.00" fill="#000000">(*parser)</text> | |
<text text-anchor="middle" x="1682" y="-1015.8" font-family="Times,serif" font-size="14.00" fill="#000000">parseParameterList</text> | |
<text text-anchor="middle" x="1682" y="-1001.8" font-family="Times,serif" font-size="14.00" fill="#000000">94.51MB (1.23%)</text> | |
<text text-anchor="middle" x="1682" y="-987.8" font-family="Times,serif" font-size="14.00" fill="#000000">of 351.08MB (4.57%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34->N25 --> | |
<g id="edge95" class="edge"> | |
<title>N34->N25</title> | |
<g id="a_edge95"><a xlink:title="go/parser.(*parser).parseParameterList ... go/parser.(*parser).tryIdentOrType (122.54MB)"> | |
<path fill="none" stroke="#b2aea4" stroke-dasharray="1,5" d="M1726.004,-1059.1366C1739.9436,-1073.5748 1754.2463,-1090.8672 1764,-1109 1787.8577,-1153.3534 1771.0866,-1172.8339 1791.2139,-1219 1795.0354,-1227.7656 1800.2668,-1227.8365 1803,-1237 1812.2734,-1268.0909 1823.1645,-1284.5828 1803,-1310 1772.5297,-1348.4076 1633.7392,-1367.4048 1553.9387,-1375.304"/> | |
<polygon fill="#b2aea4" stroke="#b2aea4" points="1553.1811,-1371.8607 1543.5619,-1376.3017 1553.851,-1378.8285 1553.1811,-1371.8607"/> | |
</a> | |
</g> | |
<g id="a_edge95-label"><a xlink:title="go/parser.(*parser).parseParameterList ... go/parser.(*parser).tryIdentOrType (122.54MB)"> | |
<text text-anchor="middle" x="1822.8931" y="-1207.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 122.54MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34->N26 --> | |
<g id="edge99" class="edge"> | |
<title>N34->N26</title> | |
<g id="a_edge99"><a xlink:title="go/parser.(*parser).parseParameterList ... go/ast.NewObj (94.01MB)"> | |
<path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M1752.3911,-994.2805C1765.8687,-986.2508 1778.4296,-975.9828 1787,-963 1808.6358,-930.2251 1808.6553,-884.4118 1804.7878,-851.4734"/> | |
<polygon fill="#b2afa7" stroke="#b2afa7" points="1808.2169,-850.7101 1803.418,-841.2644 1801.279,-851.6411 1808.2169,-850.7101"/> | |
</a> | |
</g> | |
<g id="a_edge99-label"><a xlink:title="go/parser.(*parser).parseParameterList ... go/ast.NewObj (94.01MB)"> | |
<text text-anchor="middle" x="1834.3931" y="-913.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 94.01MB</text> | |
<text text-anchor="middle" x="1834.3931" y="-899.8" font-family="Times,serif" font-size="14.00" fill="#000000"> (inline)</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN34_0 --> | |
<g id="NN34_0" class="node"> | |
<title>NN34_0</title> | |
<g id="a_NN34_0"><a xlink:title="80MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1709,-929 1659,-929 1655,-925 1655,-893 1705,-893 1709,-897 1709,-929"/> | |
<polyline fill="none" stroke="#000000" points="1705,-925 1655,-925 "/> | |
<polyline fill="none" stroke="#000000" points="1705,-925 1705,-893 "/> | |
<polyline fill="none" stroke="#000000" points="1705,-925 1709,-929 "/> | |
<text text-anchor="middle" x="1682" y="-908.6" font-family="Times,serif" font-size="8.00" fill="#000000">64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34->NN34_0 --> | |
<g id="edge38" class="edge"> | |
<title>N34->NN34_0</title> | |
<g id="a_edge38"><a xlink:title="80MB"> | |
<path fill="none" stroke="#000000" d="M1682,-980.9564C1682,-967.1164 1682,-951.8268 1682,-939.0804"/> | |
<polygon fill="#000000" stroke="#000000" points="1685.5001,-939.0593 1682,-929.0593 1678.5001,-939.0594 1685.5001,-939.0593"/> | |
</a> | |
</g> | |
<g id="a_edge38-label"><a xlink:title="80MB"> | |
<text text-anchor="middle" x="1701.6431" y="-951.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 80MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN34_1 --> | |
<g id="NN34_1" class="node"> | |
<title>NN34_1</title> | |
<g id="a_NN34_1"><a xlink:title="2.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1781,-929 1731,-929 1727,-925 1727,-893 1777,-893 1781,-897 1781,-929"/> | |
<polyline fill="none" stroke="#000000" points="1777,-925 1727,-925 "/> | |
<polyline fill="none" stroke="#000000" points="1777,-925 1777,-893 "/> | |
<polyline fill="none" stroke="#000000" points="1777,-925 1781,-929 "/> | |
<text text-anchor="middle" x="1754" y="-908.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34->NN34_1 --> | |
<g id="edge39" class="edge"> | |
<title>N34->NN34_1</title> | |
<g id="a_edge39"><a xlink:title="2.50MB"> | |
<path fill="none" stroke="#000000" d="M1712.5613,-980.9504C1716.8711,-975.0292 1721.1425,-968.9198 1725,-963 1730.1663,-955.0717 1735.3461,-946.164 1739.8692,-937.9912"/> | |
<polygon fill="#000000" stroke="#000000" points="1742.9644,-939.6256 1744.6611,-929.1675 1736.8129,-936.2849 1742.9644,-939.6256"/> | |
</a> | |
</g> | |
<g id="a_edge39-label"><a xlink:title="2.50MB"> | |
<text text-anchor="middle" x="1757.8931" y="-951.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 2.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN35_0 --> | |
<g id="NN35_0" class="node"> | |
<title>NN35_0</title> | |
<g id="a_NN35_0"><a xlink:title="165MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1460,-36 1410,-36 1406,-32 1406,0 1456,0 1460,-4 1460,-36"/> | |
<polyline fill="none" stroke="#000000" points="1456,-32 1406,-32 "/> | |
<polyline fill="none" stroke="#000000" points="1456,-32 1456,0 "/> | |
<polyline fill="none" stroke="#000000" points="1456,-32 1460,-36 "/> | |
<text text-anchor="middle" x="1433" y="-15.6" font-family="Times,serif" font-size="8.00" fill="#000000">16B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35->NN35_0 --> | |
<g id="edge40" class="edge"> | |
<title>N35->NN35_0</title> | |
<g id="a_edge40"><a xlink:title="165MB"> | |
<path fill="none" stroke="#000000" stroke-dasharray="1,5" d="M1502.2484,-98.0051C1483.0255,-92.5217 1461.9733,-83.3361 1447.7139,-68 1442.1444,-62.0101 1438.6736,-54.0165 1436.5138,-46.181"/> | |
<polygon fill="#000000" stroke="#000000" points="1439.8824,-45.1972 1434.3633,-36.1534 1433.0381,-46.665 1439.8824,-45.1972"/> | |
</a> | |
</g> | |
<g id="a_edge40-label"><a xlink:title="165MB"> | |
<text text-anchor="middle" x="1470.1431" y="-56.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 165MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN35_1 --> | |
<g id="NN35_1" class="node"> | |
<title>NN35_1</title> | |
<g id="a_NN35_1"><a xlink:title="132.51MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1532,-36 1482,-36 1478,-32 1478,0 1528,0 1532,-4 1532,-36"/> | |
<polyline fill="none" stroke="#000000" points="1528,-32 1478,-32 "/> | |
<polyline fill="none" stroke="#000000" points="1528,-32 1528,0 "/> | |
<polyline fill="none" stroke="#000000" points="1528,-32 1532,-36 "/> | |
<text text-anchor="middle" x="1505" y="-15.6" font-family="Times,serif" font-size="8.00" fill="#000000">48B..64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35->NN35_1 --> | |
<g id="edge41" class="edge"> | |
<title>N35->NN35_1</title> | |
<g id="a_edge41"><a xlink:title="132.51MB"> | |
<path fill="none" stroke="#000000" stroke-dasharray="1,5" d="M1516.2539,-85.8696C1510.5702,-80.7847 1505.4525,-74.8027 1502.2139,-68 1499.0642,-61.3841 1498.2904,-53.705 1498.6694,-46.3798"/> | |
<polygon fill="#000000" stroke="#000000" points="1502.1501,-46.7489 1499.8455,-36.4078 1495.1983,-45.929 1502.1501,-46.7489"/> | |
</a> | |
</g> | |
<g id="a_edge41-label"><a xlink:title="132.51MB"> | |
<text text-anchor="middle" x="1533.8931" y="-56.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 132.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN35_2 --> | |
<g id="NN35_2" class="node"> | |
<title>NN35_2</title> | |
<g id="a_NN35_2"><a xlink:title="81.01MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1619,-36 1569,-36 1565,-32 1565,0 1615,0 1619,-4 1619,-36"/> | |
<polyline fill="none" stroke="#000000" points="1615,-32 1565,-32 "/> | |
<polyline fill="none" stroke="#000000" points="1615,-32 1615,0 "/> | |
<polyline fill="none" stroke="#000000" points="1615,-32 1619,-36 "/> | |
<text text-anchor="middle" x="1592" y="-15.6" font-family="Times,serif" font-size="8.00" fill="#000000">80B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35->NN35_2 --> | |
<g id="edge42" class="edge"> | |
<title>N35->NN35_2</title> | |
<g id="a_edge42"><a xlink:title="81.01MB"> | |
<path fill="none" stroke="#000000" stroke-dasharray="1,5" d="M1560.6777,-85.6696C1563.8104,-80.0041 1567.124,-73.8094 1570,-68 1573.5291,-60.8713 1577.1073,-53.0465 1580.3236,-45.7471"/> | |
<polygon fill="#000000" stroke="#000000" points="1583.6814,-46.8008 1584.4465,-36.2336 1577.2586,-44.0173 1583.6814,-46.8008"/> | |
</a> | |
</g> | |
<g id="a_edge42-label"><a xlink:title="81.01MB"> | |
<text text-anchor="middle" x="1604.3931" y="-56.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 81.01MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN35_3 --> | |
<g id="NN35_3" class="node"> | |
<title>NN35_3</title> | |
<g id="a_NN35_3"><a xlink:title="48.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1699,-36 1649,-36 1645,-32 1645,0 1695,0 1699,-4 1699,-36"/> | |
<polyline fill="none" stroke="#000000" points="1695,-32 1645,-32 "/> | |
<polyline fill="none" stroke="#000000" points="1695,-32 1695,0 "/> | |
<polyline fill="none" stroke="#000000" points="1695,-32 1699,-36 "/> | |
<text text-anchor="middle" x="1672" y="-15.6" font-family="Times,serif" font-size="8.00" fill="#000000">32B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35->NN35_3 --> | |
<g id="edge43" class="edge"> | |
<title>N35->NN35_3</title> | |
<g id="a_edge43"><a xlink:title="48.50MB"> | |
<path fill="none" stroke="#000000" stroke-dasharray="1,5" d="M1596.0066,-91.2933C1610.1096,-85.4663 1625.0035,-77.7777 1637,-68 1644.8412,-61.609 1651.7017,-53.0311 1657.2223,-44.7862"/> | |
<polygon fill="#000000" stroke="#000000" points="1660.3274,-46.4221 1662.6699,-36.0895 1654.3952,-42.7061 1660.3274,-46.4221"/> | |
</a> | |
</g> | |
<g id="a_edge43-label"><a xlink:title="48.50MB"> | |
<text text-anchor="middle" x="1677.3931" y="-56.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 48.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N36->N4 --> | |
<g id="edge90" class="edge"> | |
<title>N36->N4</title> | |
<g id="a_edge90"><a xlink:title="go/types.(*Checker).indexedElts ... go/types.(*Checker).recordTypeAndValue (134.76MB)"> | |
<path fill="none" stroke="#b2ada2" stroke-dasharray="1,5" d="M1609.9898,-1949.8649C1591.6342,-1935.8813 1573.1776,-1917.6582 1563.2139,-1896 1547.7966,-1862.4873 1542.357,-1843.4267 1563.2139,-1813 1580.8036,-1787.3396 1645.6143,-1762.0903 1706.587,-1743.1326"/> | |
<polygon fill="#b2ada2" stroke="#b2ada2" points="1707.7971,-1746.4225 1716.332,-1740.1449 1705.7452,-1739.7299 1707.7971,-1746.4225"/> | |
</a> | |
</g> | |
<g id="a_edge90-label"><a xlink:title="go/types.(*Checker).indexedElts ... go/types.(*Checker).recordTypeAndValue (134.76MB)"> | |
<text text-anchor="middle" x="1594.8931" y="-1850.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 134.76MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N36->N24 --> | |
<g id="edge79" class="edge"> | |
<title>N36->N24</title> | |
<g id="a_edge79"><a xlink:title="go/types.(*Checker).indexedElts ... go/types.(*Checker).rawExpr (356.79MB)"> | |
<path fill="none" stroke="#b2a189" stroke-dasharray="1,5" d="M1618.9413,-2013.0441C1598.188,-2030.5227 1575.3672,-2054.1417 1563.2139,-2081 1546.4486,-2118.0504 1547.0512,-2165.8703 1549.8542,-2196.493"/> | |
<polygon fill="#b2a189" stroke="#b2a189" points="1546.3863,-2196.9823 1550.9126,-2206.5616 1553.3479,-2196.2504 1546.3863,-2196.9823"/> | |
</a> | |
</g> | |
<g id="a_edge79-label"><a xlink:title="go/types.(*Checker).indexedElts ... go/types.(*Checker).rawExpr (356.79MB)"> | |
<text text-anchor="middle" x="1594.8931" y="-2110.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 356.79MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN36_0 --> | |
<g id="NN36_0" class="node"> | |
<title>NN36_0</title> | |
<g id="a_NN36_0"><a xlink:title="18.50MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1690,-1872.5 1640,-1872.5 1636,-1868.5 1636,-1836.5 1686,-1836.5 1690,-1840.5 1690,-1872.5"/> | |
<polyline fill="none" stroke="#000000" points="1686,-1868.5 1636,-1868.5 "/> | |
<polyline fill="none" stroke="#000000" points="1686,-1868.5 1686,-1836.5 "/> | |
<polyline fill="none" stroke="#000000" points="1686,-1868.5 1690,-1872.5 "/> | |
<text text-anchor="middle" x="1663" y="-1852.1" font-family="Times,serif" font-size="8.00" fill="#000000">64B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N36->NN36_0 --> | |
<g id="edge44" class="edge"> | |
<title>N36->NN36_0</title> | |
<g id="a_edge44"><a xlink:title="18.50MB"> | |
<path fill="none" stroke="#000000" d="M1663,-1949.7801C1663,-1929.1994 1663,-1902.6178 1663,-1882.7623"/> | |
<polygon fill="#000000" stroke="#000000" points="1666.5001,-1882.5043 1663,-1872.5043 1659.5001,-1882.5044 1666.5001,-1882.5043"/> | |
</a> | |
</g> | |
<g id="a_edge44-label"><a xlink:title="18.50MB"> | |
<text text-anchor="middle" x="1691.3931" y="-1916.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 18.50MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N37->N12 --> | |
<g id="edge121" class="edge"> | |
<title>N37->N12</title> | |
<g id="a_edge121"><a xlink:title="go/parser.(*parser).parseParameters ... go/parser.(*parser).next (9.51MB)"> | |
<path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1662.3749,-1242.5621C1642.0766,-1228.9062 1622.9527,-1210.5215 1615,-1187 1596.699,-1132.8718 1605.6696,-1116.0759 1603,-1059 1601.3803,-1024.3712 1597.6311,-1015.2484 1603,-981 1619.3309,-876.8256 1672,-859.4467 1672,-754 1672,-754 1672,-754 1672,-309 1672,-273.2863 1638.8592,-249.3215 1606.9826,-234.5312"/> | |
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="1608.1762,-231.2328 1597.6129,-230.417 1605.3619,-237.6422 1608.1762,-231.2328"/> | |
</a> | |
</g> | |
<g id="a_edge121-label"><a xlink:title="go/parser.(*parser).parseParameters ... go/parser.(*parser).next (9.51MB)"> | |
<text text-anchor="middle" x="1696.8931" y="-749.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 9.51MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N37->N34 --> | |
<g id="edge80" class="edge"> | |
<title>N37->N34</title> | |
<g id="a_edge80"><a xlink:title="go/parser.(*parser).parseParameters -> go/parser.(*parser).parseParameterList (351.08MB)"> | |
<path fill="none" stroke="#b2a289" d="M1669.4482,-1236.975C1652.996,-1223.4746 1637.1646,-1206.6046 1628.2139,-1187 1613.816,-1155.4647 1618.907,-1142.394 1628.2139,-1109 1632.1913,-1094.7285 1639.1457,-1080.4613 1646.7597,-1067.6621"/> | |
<polygon fill="#b2a289" stroke="#b2a289" points="1649.8035,-1069.3949 1652.1078,-1059.0537 1643.8576,-1065.7009 1649.8035,-1069.3949"/> | |
</a> | |
</g> | |
<g id="a_edge80-label"><a xlink:title="go/parser.(*parser).parseParameters -> go/parser.(*parser).parseParameterList (351.08MB)"> | |
<text text-anchor="middle" x="1659.8931" y="-1143.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 351.08MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- NN37_0 --> | |
<g id="NN37_0" class="node"> | |
<title>NN37_0</title> | |
<g id="a_NN37_0"><a xlink:title="53MB"> | |
<polygon fill="#f8f8f8" stroke="#000000" points="1755,-1166 1705,-1166 1701,-1162 1701,-1130 1751,-1130 1755,-1134 1755,-1166"/> | |
<polyline fill="none" stroke="#000000" points="1751,-1162 1701,-1162 "/> | |
<polyline fill="none" stroke="#000000" points="1751,-1162 1751,-1130 "/> | |
<polyline fill="none" stroke="#000000" points="1751,-1162 1755,-1166 "/> | |
<text text-anchor="middle" x="1728" y="-1145.6" font-family="Times,serif" font-size="8.00" fill="#000000">48B</text> | |
</a> | |
</g> | |
</g> | |
<!-- N37->NN37_0 --> | |
<g id="edge45" class="edge"> | |
<title>N37->NN37_0</title> | |
<g id="a_edge45"><a xlink:title="53MB"> | |
<path fill="none" stroke="#000000" d="M1728,-1236.8628C1728,-1217.4793 1728,-1194.0498 1728,-1176.116"/> | |
<polygon fill="#000000" stroke="#000000" points="1731.5001,-1176.005 1728,-1166.0051 1724.5001,-1176.0051 1731.5001,-1176.005"/> | |
</a> | |
</g> | |
<g id="a_edge45-label"><a xlink:title="53MB"> | |
<text text-anchor="middle" x="1747.6431" y="-1207.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 53MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N38->N4 --> | |
<g id="edge92" class="edge"> | |
<title>N38->N4</title> | |
<g id="a_edge92"><a xlink:title="go/types.(*Checker).typExpr -> go/types.(*Checker).recordTypeAndValue (130.78MB)"> | |
<path fill="none" stroke="#b2aea3" d="M1793.5797,-2206.7484C1792.9303,-2160.3224 1793.0737,-2042.7611 1808.2139,-1946 1809.4936,-1937.8215 1811.6636,-1936.1694 1813,-1928 1821.4638,-1876.2627 1824.8647,-1816.8025 1826.205,-1773.2218"/> | |
<polygon fill="#b2aea3" stroke="#b2aea3" points="1829.7082,-1773.1526 1826.4892,-1763.0587 1822.711,-1772.9569 1829.7082,-1773.1526"/> | |
</a> | |
</g> | |
<g id="a_edge92-label"><a xlink:title="go/types.(*Checker).typExpr -> go/types.(*Checker).recordTypeAndValue (130.78MB)"> | |
<text text-anchor="middle" x="1839.8931" y="-1977.3" font-family="Times,serif" font-size="14.00" fill="#000000"> 130.78MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N38->N18 --> | |
<g id="edge97" class="edge"> | |
<title>N38->N18</title> | |
<g id="a_edge97"><a xlink:title="go/types.(*Checker).typExpr ... go/types.(*Checker).objDecl (101.40MB)"> | |
<path fill="none" stroke="#b2afa6" stroke-dasharray="1,5" d="M1749.9747,-2247.1659C1734.0644,-2254.8253 1716.1125,-2263.9041 1700.2139,-2273 1690.4087,-2278.6097 1688.9466,-2281.645 1679,-2287 1658.4523,-2298.0623 1635.1336,-2308.559 1614.2481,-2317.2773"/> | |
<polygon fill="#b2afa6" stroke="#b2afa6" points="1612.7542,-2314.1074 1604.8421,-2321.1535 1615.4213,-2320.5794 1612.7542,-2314.1074"/> | |
</a> | |
</g> | |
<g id="a_edge97-label"><a xlink:title="go/types.(*Checker).typExpr ... go/types.(*Checker).objDecl (101.40MB)"> | |
<text text-anchor="middle" x="1731.8931" y="-2275.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 101.40MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N40 --> | |
<g id="node40" class="node"> | |
<title>N40</title> | |
<g id="a_node40"><a xlink:title="go/build.readImports (672.28MB)"> | |
<polygon fill="#ede8e2" stroke="#b28c64" points="1385.6055,-2133 1292.3945,-2133 1292.3945,-2097 1385.6055,-2097 1385.6055,-2133"/> | |
<text text-anchor="middle" x="1339" y="-2120.6" font-family="Times,serif" font-size="8.00" fill="#000000">go/build</text> | |
<text text-anchor="middle" x="1339" y="-2112.6" font-family="Times,serif" font-size="8.00" fill="#000000">readImports</text> | |
<text text-anchor="middle" x="1339" y="-2104.6" font-family="Times,serif" font-size="8.00" fill="#000000">0 of 672.28MB (8.75%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N39->N40 --> | |
<g id="edge68" class="edge"> | |
<title>N39->N40</title> | |
<g id="a_edge68"><a xlink:title="go/build.(*Context).matchFile -> go/build.readImports (672.28MB)"> | |
<path fill="none" stroke="#b28c64" d="M1212.3996,-2212.5351C1233.7258,-2205.0555 1258.1681,-2194.6009 1278,-2181 1293.8773,-2170.1112 1308.6205,-2154.386 1319.6343,-2141.0164"/> | |
<polygon fill="#b28c64" stroke="#b28c64" points="1322.4821,-2143.059 1325.9867,-2133.0606 1317.012,-2138.6912 1322.4821,-2143.059"/> | |
</a> | |
</g> | |
<g id="a_edge68-label"><a xlink:title="go/build.(*Context).matchFile -> go/build.readImports (672.28MB)"> | |
<text text-anchor="middle" x="1326.8931" y="-2169.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 672.28MB</text> | |
</a> | |
</g> | |
</g> | |
<!-- N40->N27 --> | |
<g id="edge75" class="edge"> | |
<title>N40->N27</title> | |
<g id="a_edge75"><a xlink:title="go/build.readImports ... bufio.NewReaderSize (456.75MB)"> | |
<path fill="none" stroke="#b29b7d" stroke-dasharray="1,5" d="M1344.7992,-2096.9956C1350.5615,-2079.1054 1359.6325,-2050.9434 1367.3743,-2026.9076"/> | |
<polygon fill="#b29b7d" stroke="#b29b7d" points="1370.752,-2027.8369 1370.4865,-2017.2454 1364.0891,-2025.6907 1370.752,-2027.8369"/> | |
</a> | |
</g> | |
<g id="a_edge75-label"><a xlink:title="go/build.readImports ... bufio.NewReaderSize (456.75MB)"> | |
<text text-anchor="middle" x="1395.8931" y="-2051.8" font-family="Times,serif" font-size="14.00" fill="#000000"> 456.75MB</text> | |
<text text-anchor="middle" x="1395.8931" y="-2037.8" font-family="Times,serif" font-size="14.00" fill="#000000"> (inline)</text> | |
</a> | |
</g> | |
</g> | |
</g> | |
</g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment