diff options
author | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-16 22:12:42 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-16 22:12:42 +0000 |
commit | 4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2 (patch) | |
tree | 2d17d2388a78082e32f6a97120d707328143543b /AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/gprof2html.py | |
parent | cbc6b5e54599c7391ece99ad3c5313f4dd4ddda6 (diff) | |
download | edk2-platforms-4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2.tar.xz |
AppPkg/Applications/Python: Add Python 2.7.2 sources since the release of Python 2.7.3 made them unavailable from the python.org web site.
These files are a subset of the python-2.7.2.tgz distribution from python.org. Changed files from PyMod-2.7.2 have been copied into the corresponding directories of this tree, replacing the original files in the distribution.
Signed-off-by: daryl.mcdaniel@intel.com
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13197 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/gprof2html.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/gprof2html.py | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/gprof2html.py b/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/gprof2html.py new file mode 100644 index 0000000000..270252053e --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/gprof2html.py @@ -0,0 +1,79 @@ +#! /usr/bin/env python2.3
+
+"""Transform gprof(1) output into useful HTML."""
+
+import re, os, sys, cgi, webbrowser
+
+header = """\
+<html>
+<head>
+ <title>gprof output (%s)</title>
+</head>
+<body>
+<pre>
+"""
+
+trailer = """\
+</pre>
+</body>
+</html>
+"""
+
+def add_escapes(input):
+ for line in input:
+ yield cgi.escape(line)
+
+def main():
+ filename = "gprof.out"
+ if sys.argv[1:]:
+ filename = sys.argv[1]
+ outputfilename = filename + ".html"
+ input = add_escapes(file(filename))
+ output = file(outputfilename, "w")
+ output.write(header % filename)
+ for line in input:
+ output.write(line)
+ if line.startswith(" time"):
+ break
+ labels = {}
+ for line in input:
+ m = re.match(r"(.* )(\w+)\n", line)
+ if not m:
+ output.write(line)
+ break
+ stuff, fname = m.group(1, 2)
+ labels[fname] = fname
+ output.write('%s<a name="flat:%s" href="#call:%s">%s</a>\n' %
+ (stuff, fname, fname, fname))
+ for line in input:
+ output.write(line)
+ if line.startswith("index % time"):
+ break
+ for line in input:
+ m = re.match(r"(.* )(\w+)(( <cycle.*>)? \[\d+\])\n", line)
+ if not m:
+ output.write(line)
+ if line.startswith("Index by function name"):
+ break
+ continue
+ prefix, fname, suffix = m.group(1, 2, 3)
+ if fname not in labels:
+ output.write(line)
+ continue
+ if line.startswith("["):
+ output.write('%s<a name="call:%s" href="#flat:%s">%s</a>%s\n' %
+ (prefix, fname, fname, fname, suffix))
+ else:
+ output.write('%s<a href="#call:%s">%s</a>%s\n' %
+ (prefix, fname, fname, suffix))
+ for line in input:
+ for part in re.findall(r"(\w+(?:\.c)?|\W+)", line):
+ if part in labels:
+ part = '<a href="#call:%s">%s</a>' % (part, part)
+ output.write(part)
+ output.write(trailer)
+ output.close()
+ webbrowser.open("file:" + os.path.abspath(outputfilename))
+
+if __name__ == '__main__':
+ main()
|