├── .gitignore ├── .gitmodules ├── README.md ├── assets ├── arch.jpg ├── eventlog2html-basic.png ├── eventlog2html-basic2.png ├── eventlog2html-detailed-info.png ├── eventlog2html-detailed-row.png ├── eventlog2html-detailed.png ├── eventlog2html-heap.png ├── eventlog2html-info-module.png ├── eventlog2html-info-table.png ├── eventlog2html-info-thunks.png ├── eventlog2html-line.png ├── eventlog2html-marker.png ├── ghc-debug-tui-expaned.png ├── ghc-debug-tui-launch.png ├── ghc-debug-tui-locs.png ├── ghc-debug-tui-pause.png ├── ghc-debug-tui-saved.png ├── ghc-debug-tui.png ├── ghc-debug-tui2.png ├── simple-heap.svg ├── stack.svg └── thunk.svg ├── cabal.project ├── debugger ├── CHANGELOG.md ├── Main.hs ├── Setup.hs └── debugger.cabal ├── prepare ├── shell.nix └── simple ├── CHANGELOG.md ├── CHANGELOG.md.save0 ├── app └── Main.hs └── simple-examples.cabal /.gitignore: -------------------------------------------------------------------------------- 1 | dist-newstyle/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/README.md -------------------------------------------------------------------------------- /assets/arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/arch.jpg -------------------------------------------------------------------------------- /assets/eventlog2html-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-basic.png -------------------------------------------------------------------------------- /assets/eventlog2html-basic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-basic2.png -------------------------------------------------------------------------------- /assets/eventlog2html-detailed-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-detailed-info.png -------------------------------------------------------------------------------- /assets/eventlog2html-detailed-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-detailed-row.png -------------------------------------------------------------------------------- /assets/eventlog2html-detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-detailed.png -------------------------------------------------------------------------------- /assets/eventlog2html-heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-heap.png -------------------------------------------------------------------------------- /assets/eventlog2html-info-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-info-module.png -------------------------------------------------------------------------------- /assets/eventlog2html-info-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-info-table.png -------------------------------------------------------------------------------- /assets/eventlog2html-info-thunks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-info-thunks.png -------------------------------------------------------------------------------- /assets/eventlog2html-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-line.png -------------------------------------------------------------------------------- /assets/eventlog2html-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/eventlog2html-marker.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui-expaned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui-expaned.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui-launch.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui-locs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui-locs.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui-pause.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui-saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui-saved.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui.png -------------------------------------------------------------------------------- /assets/ghc-debug-tui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/ghc-debug-tui2.png -------------------------------------------------------------------------------- /assets/simple-heap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/simple-heap.svg -------------------------------------------------------------------------------- /assets/stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/stack.svg -------------------------------------------------------------------------------- /assets/thunk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/assets/thunk.svg -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/cabal.project -------------------------------------------------------------------------------- /debugger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/debugger/CHANGELOG.md -------------------------------------------------------------------------------- /debugger/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/debugger/Main.hs -------------------------------------------------------------------------------- /debugger/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /debugger/debugger.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/debugger/debugger.cabal -------------------------------------------------------------------------------- /prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/prepare -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/shell.nix -------------------------------------------------------------------------------- /simple/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/simple/CHANGELOG.md -------------------------------------------------------------------------------- /simple/CHANGELOG.md.save0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/simple/CHANGELOG.md.save0 -------------------------------------------------------------------------------- /simple/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/simple/app/Main.hs -------------------------------------------------------------------------------- /simple/simple-examples.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed/memory-usage-zurihac-2021/HEAD/simple/simple-examples.cabal --------------------------------------------------------------------------------