[compiler-rt] r194809 - [asan] helper script to dump/merge coverage data

Kostya Serebryany kcc at google.com
Fri Nov 15 03:51:08 PST 2013


Author: kcc
Date: Fri Nov 15 05:51:08 2013
New Revision: 194809

URL: http://llvm.org/viewvc/llvm-project?rev=194809&view=rev
Log:
[asan] helper script to dump/merge coverage data

Added:
    compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py   (with props)

Added: compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py?rev=194809&view=auto
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py (added)
+++ compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py Fri Nov 15 05:51:08 2013
@@ -0,0 +1,56 @@
+#!/usr/bin/env python
+# Merge or print the coverage data collected by asan's coverage.
+# Input files are sequences of 4-byte integers.
+# We need to merge these integers into a set and then
+# either print them (as hex) or dump them into another file.
+import array
+import sys
+
+prog_name = "";
+
+def Usage():
+  print >> sys.stderr, "Usage: \n" + \
+      " " + prog_name + " merge file1 [file2 ...]  > output\n" \
+      " " + prog_name + " print file1 [file2 ...]\n"
+  exit(1)
+
+def ReadOneFile(path):
+  f = open(path, mode="rb")
+  f.seek(0, 2)
+  size = f.tell()
+  f.seek(0, 0)
+  s = set(array.array('I', f.read(size)))
+  f.close()
+  print >>sys.stderr, "%s: read %d PCs from %s" % (prog_name, size / 4, path)
+  return s
+
+def Merge(files):
+  s = set()
+  for f in files:
+    s = s.union(ReadOneFile(f))
+  print >> sys.stderr, "%s: %d files merged; %d PCs total" % \
+    (prog_name, len(files), len(s))
+  return sorted(s)
+
+def PrintFiles(files):
+  s = Merge(files)
+  for i in s:
+    print "0x%x" % i
+
+def MergeAndPrint(files):
+  if sys.stdout.isatty():
+    Usage()
+  s = Merge(files)
+  a = array.array('I', s)
+  a.tofile(sys.stdout)
+
+if __name__ == '__main__':
+  prog_name = sys.argv[0]
+  if len(sys.argv) <= 2:
+    Usage();
+  if sys.argv[1] == "print":
+    PrintFiles(sys.argv[2:])
+  elif sys.argv[1] == "merge":
+    MergeAndPrint(sys.argv[2:])
+  else:
+    Usage()

Propchange: compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py
------------------------------------------------------------------------------
    svn:executable = *





More information about the llvm-commits mailing list