gitextract_kmdeuzjx/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd/ │ ├── bitstringer/ │ │ └── main.go │ ├── branchstats/ │ │ └── main.go │ ├── memanim/ │ │ ├── .gitignore │ │ ├── hilbert_test.go │ │ └── main.go │ ├── memheat/ │ │ ├── draw.go │ │ ├── main.go │ │ └── svg.go │ ├── memlat/ │ │ ├── database.go │ │ ├── main.go │ │ └── static/ │ │ ├── bower.json │ │ ├── bower_components/ │ │ │ ├── font-roboto/ │ │ │ │ ├── .bower.json │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ └── roboto.html │ │ │ ├── paper-styles/ │ │ │ │ ├── .bower.json │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── classes/ │ │ │ │ │ ├── global.html │ │ │ │ │ ├── shadow-layout.html │ │ │ │ │ ├── shadow.html │ │ │ │ │ └── typography.html │ │ │ │ ├── color.html │ │ │ │ ├── default-theme.html │ │ │ │ ├── demo/ │ │ │ │ │ └── index.html │ │ │ │ ├── demo-pages.html │ │ │ │ ├── demo.css │ │ │ │ ├── paper-styles-classes.html │ │ │ │ ├── paper-styles.html │ │ │ │ ├── shadow.html │ │ │ │ └── typography.html │ │ │ ├── polymer/ │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── bower.json │ │ │ │ ├── build.log │ │ │ │ ├── polymer-micro.html │ │ │ │ ├── polymer-mini.html │ │ │ │ └── polymer.html │ │ │ ├── promise-polyfill/ │ │ │ │ ├── .bower.json │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── Promise-Statics.js │ │ │ │ ├── Promise.js │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── package.json │ │ │ │ ├── promise-polyfill-lite.html │ │ │ │ └── promise-polyfill.html │ │ │ └── webcomponentsjs/ │ │ │ ├── .bower.json │ │ │ ├── CustomElements.js │ │ │ ├── HTMLImports.js │ │ │ ├── MutationObserver.js │ │ │ ├── README.md │ │ │ ├── ShadowDOM.js │ │ │ ├── bower.json │ │ │ ├── build.log │ │ │ ├── package.json │ │ │ ├── webcomponents-lite.js │ │ │ └── webcomponents.js │ │ ├── index.html │ │ └── memlat-browser.html │ ├── perfdump/ │ │ └── main.go │ └── prologuer/ │ └── main.go ├── fmt_test.go ├── go.mod ├── go.sum ├── internal/ │ ├── cparse/ │ │ ├── enums.go │ │ ├── enums_test.go │ │ ├── lex.go │ │ ├── lex_test.go │ │ ├── pp.go │ │ ├── pp_test.go │ │ └── vals.go │ └── gendefs/ │ ├── edit.go │ └── main.go ├── perffile/ │ ├── auxflags_string.go │ ├── auxpmuformat_string.go │ ├── bpfeventtype_string.go │ ├── branchflags_string.go │ ├── branchsampletype_string.go │ ├── breakpointop_string.go │ ├── buf.go │ ├── bufdecoder.go │ ├── cpumode_string.go │ ├── cpuset.go │ ├── datasrcblock_string.go │ ├── datasrchops_string.go │ ├── datasrclevel_string.go │ ├── datasrclevelnum_string.go │ ├── datasrclock_string.go │ ├── datasrcop_string.go │ ├── datasrcsnoop_string.go │ ├── datasrctlb_string.go │ ├── doc_test.go │ ├── eventflags_string.go │ ├── eventhardwareid_string.go │ ├── eventprecision_string.go │ ├── events.go │ ├── eventtype_string.go │ ├── format.go │ ├── gendefs.sh │ ├── ksymbolflags_string.go │ ├── ksymboltype_string.go │ ├── meta.go │ ├── package.go │ ├── reader.go │ ├── readformat_string.go │ ├── records.go │ ├── recordsorder_string.go │ ├── recordtype_string.go │ ├── sampleformat_string.go │ ├── sampleregsabi_string.go │ └── transaction_string.go ├── perfsession/ │ ├── package.go │ ├── ranges.go │ ├── session.go │ └── symbolize.go ├── scale/ │ ├── interface.go │ ├── linear.go │ ├── log.go │ ├── output.go │ ├── power.go │ └── util.go └── scripts/ ├── membw ├── memload.py └── topdown.py