summaryrefslogtreecommitdiff
path: root/mapvis.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2017-07-30 15:36:45 +0200
committerjaseg <git@jaseg.net>2017-07-30 15:36:45 +0200
commitb9535e1b089f14f7123d0865a06b985d2285dabf (patch)
treef8538393fb38ed749690d660789eca79c6fb49e2 /mapvis.py
downloadsecure-hid-b9535e1b089f14f7123d0865a06b985d2285dabf.tar.gz
secure-hid-b9535e1b089f14f7123d0865a06b985d2285dabf.tar.bz2
secure-hid-b9535e1b089f14f7123d0865a06b985d2285dabf.zip
Initial commit, blink working
Diffstat (limited to 'mapvis.py')
-rw-r--r--mapvis.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/mapvis.py b/mapvis.py
new file mode 100644
index 0000000..4a71222
--- /dev/null
+++ b/mapvis.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python3
+
+from matplotlib import pyplot as plt
+
+f, ax = plt.subplots(1, figsize=(3, 8))
+bar_width = 1
+
+ax.bar([-bar_width/2], top, bottom=bottom, width=bar_width, label='foo')
+ax.set_xticks([0], [filename])
+ax.set_ylabel('Memory usage (B)')
+ax.set_xlabel('')
+
+ax.set_xlim([-bar_width/2, bar_width/2])
+ax.set_ylim([0, mem_max])
+
+if __name__ == '__main__':
+ import argparse
+ import mapparse
+ parser = argparse.ArgumentParser(description='Visualize program memory usage using GCC map file')
+ parser.add_argument('mapfile', type=argparse.FileType('r'), description='Input GCC .map file')
+ args = parser.parse_args()
+
+ mapping = mapparse.MapFile(args.mapfile.read())
+ mapping.
+