A visualizer for il linker related data
Run sh ./run.sh <path of dll>
WebApp/: WebApp created using WebAssembly and d3.js to plot wasm linker performance
tools/:
| web/: files for plotting JSON with d3.js
| pyscripts/: preliminary python scripts for data exploration
In the WebApp/ folder, run:
dotnet run
Go to localhost:5001
Data is in the WebApp/wwwroot/json/
directory, and should be a json of the format:
[
{
"name": assembly name,
"size": #,
"sections": [
{
"name": class name,
"size": #,
"sections": [
{
"name": method name,
"size": #,
"sections": null
...