1#!/usr/bin/env python 2# Copyright (c) 2012, Neville-Neil Consulting 3# All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions are 7# met: 8# 9# Redistributions of source code must retain the above copyright notice, 10# this list of conditions and the following disclaimer. 11# 12# Redistributions in binary form must reproduce the above copyright 13# notice, this list of conditions and the following disclaimer in the 14# documentation and/or other materials provided with the distribution. 15# 16# Neither the name of Neville-Neil Consulting nor the names of its 17# contributors may be used to endorse or promote products derived from 18# this software without specific prior written permission. 19# 20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 25# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 26# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 30# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31# 32# Author: George V. Neville-Neil 33# 34# $FreeBSD$ 35 36# Description: A program to run a simple program against every available 37# pmc counter present in a system. 38# 39# To use: 40# 41# pmctest.py -p ls > /dev/null 42# 43# This should result in ls being run with every available counter 44# and the system should neither lock up nor panic. 45# 46# The default is to wait after each counter is tested. Since the 47# prompt would go to stdout you won't see it, just press return 48# to continue or Ctrl-D to stop. 49 50import sys 51import subprocess 52from subprocess import PIPE 53 54# A list of strings that are not really counters, just 55# name tags that are output by pmccontrol -L 56notcounter = ["IAF", "IAP", "TSC", "UNC", "UCF", "UCP", "SOFT" ] 57 58def main(): 59 60 from optparse import OptionParser 61 62 parser = OptionParser() 63 parser.add_option("-p", "--program", dest="program", 64 help="program to execute") 65 parser.add_option("-w", "--wait", action="store_true", dest="wait", 66 default=True, help="wait after each execution") 67 68 (options, args) = parser.parse_args() 69 70 if (options.program == None): 71 print "specify program, such as ls, with -p/--program" 72 sys.exit() 73 74 p = subprocess.Popen(["pmccontrol", "-L"], stdout=PIPE) 75 counters = p.communicate()[0] 76 77 if len(counters) <= 0: 78 print "no counters found" 79 sys.exit() 80 81 for counter in counters.split(): 82 if counter in notcounter: 83 continue 84 p = subprocess.Popen(["pmcstat", "-p", counter, options.program], 85 stdout=PIPE) 86 result = p.communicate()[0] 87 print result 88 if (options.wait == True): 89 try: 90 value = raw_input("next?") 91 except EOFError: 92 sys.exit() 93 94# The canonical way to make a python module into a script. 95# Remove if unnecessary. 96 97if __name__ == "__main__": 98 main() 99