aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-07 20:58:55 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-07 20:58:55 +0000
commit60cd232fba6d12f135d94eee69bc8ece8192e0d4 (patch)
treebbd7a02ca46d1f967d0535c94d5993d4848864ad
parentd905a1ac783115d81e8e3a07d3f197756cb9c5f5 (diff)
downloadbusybox-w32-60cd232fba6d12f135d94eee69bc8ece8192e0d4.tar.gz
busybox-w32-60cd232fba6d12f135d94eee69bc8ece8192e0d4.tar.bz2
busybox-w32-60cd232fba6d12f135d94eee69bc8ece8192e0d4.zip
Script to easily get an assembly dump of a single function.
git-svn-id: svn://busybox.net/trunk/busybox@15024 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rwxr-xr-xscripts/showasm21
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/showasm b/scripts/showasm
new file mode 100755
index 000000000..046442653
--- /dev/null
+++ b/scripts/showasm
@@ -0,0 +1,21 @@
1#!/bin/sh
2
3# Copyright 2006 Rob Landley <rob@landley.net>
4# Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
5
6# Dumb little utility function to print out the assembly dump of a single
7# function, or list the functions so dumpable in an executable. You'd think
8# there would be a way to get objdump to do this, but I can't find it.
9
10[ $# -lt 1 ] || [ $# -gt 2 ] && { echo "usage: showasm file function"; exit 1; }
11
12[ ! -f $1 ] && { echo "File $1 not found"; exit 1; }
13
14if [ $# -eq 1 ]
15then
16 objdump -d $1 | sed -n -e 's/^[0-9a-fA-F]* <\(.*\)>:$/\1/p'
17 exit 0
18fi
19
20objdump -d $1 | sed -n -e '/./{H;$!d}' -e "x;/^.[0-9a-fA-F]* <$2>:/p"
21