├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── gprof2dot.py ├── images └── compare_diff.png ├── pyproject.toml ├── sample.svg ├── schema.json ├── setup.cfg ├── setup.py └── tests ├── .gitattributes ├── .gitignore ├── axe ├── nucleotide.axe ├── r000hs_gprof_cc.axe ├── r000hs_vtune_gprof_2013.axe └── r000hs_vtune_gprof_2015.axe ├── callgrind ├── bool.callgrind ├── bzr.callgrind ├── empty.callgrind ├── googlecode-issue34.callgrind ├── googlecode-issue98.callgrind ├── issue35.callgrind ├── selinux.callgrind ├── xapian.callgrind └── xdebug-cachegrind.callgrind ├── collapse └── synapse.collapse ├── compare ├── axe │ └── test │ │ ├── test1.txt │ │ └── test2.txt ├── callgrind │ └── test │ │ ├── test1.callgrind │ │ └── test2.callgrind └── pstats │ └── print │ ├── print1.pstats │ └── print2.pstats ├── dtrace ├── go.dtrace └── rust.dtrace ├── hprof ├── hadoop.hprof └── jdbc.hprof ├── json ├── cycle.json ├── diamond.json ├── empty.json ├── memtrail.leaked.json └── memtrail.maximum.json ├── oprofile ├── gallium.oprofile └── x11perf.oprofile ├── perf ├── glxgears.perf ├── issue28-c++filt.perf ├── issue28.perf ├── val3_perf.perf └── xwax.perf ├── prof ├── cycle.prof ├── dan.skorupski.prof ├── darwin.prof ├── embedded.prof ├── gnu1.prof ├── gnu2.prof ├── hpasanen.prof ├── ibm.prof ├── issue29.prof ├── issue30.prof ├── issue88.prof ├── shedskin.prof ├── val3_gprof.prof └── zeros.prof ├── pstats ├── .gitignore ├── function-list.orig.txt └── memtrail.pstats ├── sleepy ├── apitrace.sleepy └── val3_sleepy.sleepy ├── sysprof └── nautilus.sysprof ├── test.py └── xperf └── val3_xperf.xperf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/README.md -------------------------------------------------------------------------------- /gprof2dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/gprof2dot.py -------------------------------------------------------------------------------- /images/compare_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/images/compare_diff.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/sample.svg -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/schema.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.gitattributes: -------------------------------------------------------------------------------- 1 | *.xperf -crlf 2 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | val3 2 | -------------------------------------------------------------------------------- /tests/axe/nucleotide.axe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/axe/nucleotide.axe -------------------------------------------------------------------------------- /tests/axe/r000hs_gprof_cc.axe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/axe/r000hs_gprof_cc.axe -------------------------------------------------------------------------------- /tests/axe/r000hs_vtune_gprof_2013.axe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/axe/r000hs_vtune_gprof_2013.axe -------------------------------------------------------------------------------- /tests/axe/r000hs_vtune_gprof_2015.axe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/axe/r000hs_vtune_gprof_2015.axe -------------------------------------------------------------------------------- /tests/callgrind/bool.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/bool.callgrind -------------------------------------------------------------------------------- /tests/callgrind/bzr.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/bzr.callgrind -------------------------------------------------------------------------------- /tests/callgrind/empty.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/empty.callgrind -------------------------------------------------------------------------------- /tests/callgrind/googlecode-issue34.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/googlecode-issue34.callgrind -------------------------------------------------------------------------------- /tests/callgrind/googlecode-issue98.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/googlecode-issue98.callgrind -------------------------------------------------------------------------------- /tests/callgrind/issue35.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/issue35.callgrind -------------------------------------------------------------------------------- /tests/callgrind/selinux.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/selinux.callgrind -------------------------------------------------------------------------------- /tests/callgrind/xapian.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/xapian.callgrind -------------------------------------------------------------------------------- /tests/callgrind/xdebug-cachegrind.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/callgrind/xdebug-cachegrind.callgrind -------------------------------------------------------------------------------- /tests/collapse/synapse.collapse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/collapse/synapse.collapse -------------------------------------------------------------------------------- /tests/compare/axe/test/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/compare/axe/test/test1.txt -------------------------------------------------------------------------------- /tests/compare/axe/test/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/compare/axe/test/test2.txt -------------------------------------------------------------------------------- /tests/compare/callgrind/test/test1.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/compare/callgrind/test/test1.callgrind -------------------------------------------------------------------------------- /tests/compare/callgrind/test/test2.callgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/compare/callgrind/test/test2.callgrind -------------------------------------------------------------------------------- /tests/compare/pstats/print/print1.pstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/compare/pstats/print/print1.pstats -------------------------------------------------------------------------------- /tests/compare/pstats/print/print2.pstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/compare/pstats/print/print2.pstats -------------------------------------------------------------------------------- /tests/dtrace/go.dtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/dtrace/go.dtrace -------------------------------------------------------------------------------- /tests/dtrace/rust.dtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/dtrace/rust.dtrace -------------------------------------------------------------------------------- /tests/hprof/hadoop.hprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/hprof/hadoop.hprof -------------------------------------------------------------------------------- /tests/hprof/jdbc.hprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/hprof/jdbc.hprof -------------------------------------------------------------------------------- /tests/json/cycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/json/cycle.json -------------------------------------------------------------------------------- /tests/json/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/json/diamond.json -------------------------------------------------------------------------------- /tests/json/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/json/empty.json -------------------------------------------------------------------------------- /tests/json/memtrail.leaked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/json/memtrail.leaked.json -------------------------------------------------------------------------------- /tests/json/memtrail.maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/json/memtrail.maximum.json -------------------------------------------------------------------------------- /tests/oprofile/gallium.oprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/oprofile/gallium.oprofile -------------------------------------------------------------------------------- /tests/oprofile/x11perf.oprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/oprofile/x11perf.oprofile -------------------------------------------------------------------------------- /tests/perf/glxgears.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/perf/glxgears.perf -------------------------------------------------------------------------------- /tests/perf/issue28-c++filt.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/perf/issue28-c++filt.perf -------------------------------------------------------------------------------- /tests/perf/issue28.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/perf/issue28.perf -------------------------------------------------------------------------------- /tests/perf/val3_perf.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/perf/val3_perf.perf -------------------------------------------------------------------------------- /tests/perf/xwax.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/perf/xwax.perf -------------------------------------------------------------------------------- /tests/prof/cycle.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/cycle.prof -------------------------------------------------------------------------------- /tests/prof/dan.skorupski.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/dan.skorupski.prof -------------------------------------------------------------------------------- /tests/prof/darwin.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/darwin.prof -------------------------------------------------------------------------------- /tests/prof/embedded.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/embedded.prof -------------------------------------------------------------------------------- /tests/prof/gnu1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/gnu1.prof -------------------------------------------------------------------------------- /tests/prof/gnu2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/gnu2.prof -------------------------------------------------------------------------------- /tests/prof/hpasanen.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/hpasanen.prof -------------------------------------------------------------------------------- /tests/prof/ibm.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/ibm.prof -------------------------------------------------------------------------------- /tests/prof/issue29.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/issue29.prof -------------------------------------------------------------------------------- /tests/prof/issue30.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/issue30.prof -------------------------------------------------------------------------------- /tests/prof/issue88.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/issue88.prof -------------------------------------------------------------------------------- /tests/prof/shedskin.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/shedskin.prof -------------------------------------------------------------------------------- /tests/prof/val3_gprof.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/val3_gprof.prof -------------------------------------------------------------------------------- /tests/prof/zeros.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/prof/zeros.prof -------------------------------------------------------------------------------- /tests/pstats/.gitignore: -------------------------------------------------------------------------------- 1 | function-list.testgen.txt 2 | -------------------------------------------------------------------------------- /tests/pstats/function-list.orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/pstats/function-list.orig.txt -------------------------------------------------------------------------------- /tests/pstats/memtrail.pstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/pstats/memtrail.pstats -------------------------------------------------------------------------------- /tests/sleepy/apitrace.sleepy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/sleepy/apitrace.sleepy -------------------------------------------------------------------------------- /tests/sleepy/val3_sleepy.sleepy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/sleepy/val3_sleepy.sleepy -------------------------------------------------------------------------------- /tests/sysprof/nautilus.sysprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/sysprof/nautilus.sysprof -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/xperf/val3_xperf.xperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrfonseca/gprof2dot/HEAD/tests/xperf/val3_xperf.xperf --------------------------------------------------------------------------------