From owner-cvs-src-old@FreeBSD.ORG Fri Mar 5 22:43:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2A9E106578D for ; Fri, 5 Mar 2010 22:43:55 +0000 (UTC) (envelope-from fabient@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9B0DC8FC0A for ; Fri, 5 Mar 2010 22:43:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25MhtC7057454 for ; Fri, 5 Mar 2010 22:43:55 GMT (envelope-from fabient@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25Mht3h057453 for cvs-src-old@freebsd.org; Fri, 5 Mar 2010 22:43:55 GMT (envelope-from fabient@repoman.freebsd.org) Message-Id: <201003052243.o25Mht3h057453@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to fabient@repoman.freebsd.org using -f From: Fabien Thomas Date: Fri, 5 Mar 2010 22:43:44 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/usr.sbin/pmcstat Makefile pmcpl_annotate.c pmcpl_annotate.h pmcpl_callgraph.c pmcpl_callgraph.h pmcpl_calltree.c pmcpl_calltree.h pmcpl_gprof.c pmcpl_gprof.h pmcstat.8 pmcstat.c pmcstat.h pmcstat_log.c pmcstat_log.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 22:43:55 -0000 fabient 2010-03-05 22:43:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.sbin/pmcstat Makefile pmcstat.8 pmcstat.c pmcstat.h pmcstat_log.c Added files: (Branch: RELENG_7) usr.sbin/pmcstat pmcpl_annotate.c pmcpl_annotate.h pmcpl_callgraph.c pmcpl_callgraph.h pmcpl_calltree.c pmcpl_calltree.h pmcpl_gprof.c pmcpl_gprof.h pmcstat_log.h pmcstat_top.h Log: SVN rev 204775 on 2010-03-05 22:43:44Z by fabient MFC 203790: - Reorganize code in 'plugin' to share log processing. - Kcachegrind (calltree) support with assembly/source code mapping and call count estimator (-F). - Top mode for calltree and callgraph plugin (-T). Revision Changes Path 1.5.2.2 +3 -2 src/usr.sbin/pmcstat/Makefile 1.1.4.2 +111 -0 src/usr.sbin/pmcstat/pmcpl_annotate.c (new) 1.1.4.2 +41 -0 src/usr.sbin/pmcstat/pmcpl_annotate.h (new) 1.1.4.2 +682 -0 src/usr.sbin/pmcstat/pmcpl_callgraph.c (new) 1.1.4.2 +67 -0 src/usr.sbin/pmcstat/pmcpl_callgraph.h (new) 1.1.4.2 +1000 -0 src/usr.sbin/pmcstat/pmcpl_calltree.c (new) 1.1.4.2 +42 -0 src/usr.sbin/pmcstat/pmcpl_calltree.h (new) 1.1.4.2 +533 -0 src/usr.sbin/pmcstat/pmcpl_gprof.c (new) 1.1.4.2 +47 -0 src/usr.sbin/pmcstat/pmcpl_gprof.h (new) 1.12.2.2 +27 -1 src/usr.sbin/pmcstat/pmcstat.8 1.17.2.3 +205 -81 src/usr.sbin/pmcstat/pmcstat.c 1.5.2.2 +52 -23 src/usr.sbin/pmcstat/pmcstat.h 1.10.2.2 +590 -1114 src/usr.sbin/pmcstat/pmcstat_log.c 1.1.4.2 +196 -0 src/usr.sbin/pmcstat/pmcstat_log.h (new) 1.1.4.2 +75 -0 src/usr.sbin/pmcstat/pmcstat_top.h (new)