aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/scripts/unwcheck.py
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/ia64/scripts/unwcheck.py
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/ia64/scripts/unwcheck.py')
-rwxr-xr-xarch/ia64/scripts/unwcheck.py64
1 files changed, 64 insertions, 0 deletions
diff --git a/arch/ia64/scripts/unwcheck.py b/arch/ia64/scripts/unwcheck.py
new file mode 100755
index 000000000000..c27849889e19
--- /dev/null
+++ b/arch/ia64/scripts/unwcheck.py
@@ -0,0 +1,64 @@
1#!/usr/bin/env python
2#
3# Usage: unwcheck.py FILE
4#
5# This script checks the unwind info of each function in file FILE
6# and verifies that the sum of the region-lengths matches the total
7# length of the function.
8#
9# Based on a shell/awk script originally written by Harish Patil,
10# which was converted to Perl by Matthew Chapman, which was converted
11# to Python by David Mosberger.
12#
13import os
14import re
15import sys
16
17if len(sys.argv) != 2:
18 print "Usage: %s FILE" % sys.argv[0]
19 sys.exit(2)
20
21readelf = os.getenv("READELF", "readelf")
22
23start_pattern = re.compile("<([^>]*)>: \[0x([0-9a-f]+)-0x([0-9a-f]+)\]")
24rlen_pattern = re.compile(".*rlen=([0-9]+)")
25
26def check_func (func, slots, rlen_sum):
27 if slots != rlen_sum:
28 global num_errors
29 num_errors += 1
30 if not func: func = "[%#x-%#x]" % (start, end)
31 print "ERROR: %s: %lu slots, total region length = %lu" % (func, slots, rlen_sum)
32 return
33
34num_funcs = 0
35num_errors = 0
36func = False
37slots = 0
38rlen_sum = 0
39for line in os.popen("%s -u %s" % (readelf, sys.argv[1])):
40 m = start_pattern.match(line)
41 if m:
42 check_func(func, slots, rlen_sum)
43
44 func = m.group(1)
45 start = long(m.group(2), 16)
46 end = long(m.group(3), 16)
47 slots = 3 * (end - start) / 16
48 rlen_sum = 0L
49 num_funcs += 1
50 else:
51 m = rlen_pattern.match(line)
52 if m:
53 rlen_sum += long(m.group(1))
54check_func(func, slots, rlen_sum)
55
56if num_errors == 0:
57 print "No errors detected in %u functions." % num_funcs
58else:
59 if num_errors > 1:
60 err="errors"
61 else:
62 err="error"
63 print "%u %s detected in %u functions." % (num_errors, err, num_funcs)
64 sys.exit(1)