Index: head/benchmarks/Makefile =================================================================== --- head/benchmarks/Makefile (revision 437513) +++ head/benchmarks/Makefile (revision 437514) @@ -1,90 +1,91 @@ # $FreeBSD$ # COMMENT = Benchmarking tools SUBDIR += autobench SUBDIR += blogbench SUBDIR += bombardier SUBDIR += bonnie SUBDIR += bonnie++ SUBDIR += clpeak SUBDIR += cpipe SUBDIR += dbench SUBDIR += dbs SUBDIR += dhrystone SUBDIR += dkftpbench SUBDIR += expedite SUBDIR += fhourstones SUBDIR += filebench SUBDIR += fio + SUBDIR += flamegraph SUBDIR += flops SUBDIR += flowgrind SUBDIR += forkbomb SUBDIR += glmark2 SUBDIR += gobench SUBDIR += gtkperf SUBDIR += himenobench SUBDIR += hpl SUBDIR += hs-criterion SUBDIR += httperf SUBDIR += imb SUBDIR += interbench SUBDIR += iorate SUBDIR += iozone SUBDIR += iozone21 SUBDIR += iperf SUBDIR += iperf3 SUBDIR += libmicro SUBDIR += lmbench SUBDIR += mdtest SUBDIR += nbench SUBDIR += netio SUBDIR += netperf SUBDIR += netperfmeter SUBDIR += netpipe SUBDIR += nosqlbench SUBDIR += nqueens SUBDIR += nttcp SUBDIR += nuttcp SUBDIR += octave-forge-benchmark SUBDIR += p5-Benchmark-Forking SUBDIR += p5-Benchmark-Stopwatch SUBDIR += pathchirp SUBDIR += pathload SUBDIR += pathrate SUBDIR += pear-Benchmark SUBDIR += phoronix-test-suite SUBDIR += pipebench SUBDIR += polygraph SUBDIR += postal SUBDIR += postmark SUBDIR += py-naarad SUBDIR += py-zopkio SUBDIR += pybench SUBDIR += raidtest SUBDIR += ramspeed SUBDIR += randomio SUBDIR += rubygem-benchmark-ips SUBDIR += rubygem-railsbench SUBDIR += scimark2 SUBDIR += scimark2c SUBDIR += siege SUBDIR += sipp SUBDIR += slowloris SUBDIR += smhasher SUBDIR += spp SUBDIR += stream SUBDIR += stress-ng SUBDIR += super-smack SUBDIR += sysbench SUBDIR += tcpblast SUBDIR += thrulay SUBDIR += tsung SUBDIR += ttcp SUBDIR += ubench SUBDIR += unixbench SUBDIR += webbench SUBDIR += wrk .include Index: head/benchmarks/flamegraph/Makefile =================================================================== --- head/benchmarks/flamegraph/Makefile (nonexistent) +++ head/benchmarks/flamegraph/Makefile (revision 437514) @@ -0,0 +1,52 @@ +# Created by: Johannes Dieterich +# $FreeBSD$ + +PORTNAME= flamegraph +PORTVERSION= g20170308 +CATEGORIES= benchmarks + +MAINTAINER= jmd@FreeBSD.org +COMMENT= Stack trace visualizer + +LICENSE= CDDL +LICENSE_FILE= ${WRKSRC}/docs/cddl1.txt + +BUILD_DEPENDS= bash>=0:shells/bash +RUN_DEPENDS= bash>=0:shells/bash + +USE_GITHUB= yes +GH_ACCOUNT= brendangregg +GH_PROJECT= FlameGraph +GH_TAGNAME= 74764af + +USES= shebangfix perl5 +NO_BUILD= yes + +SHEBANG_FILES= *.pl *.sh + +SOURCE_FILES= aix-perf.pl \ + difffolded.pl \ + files.pl \ + flamegraph.pl \ + pkgsplit-perf.sh \ + range-perf.pl \ + stackcollapse-aix.pl \ + stackcollapse-elfutils.pl \ + stackcollapse-gdb.pl \ + stackcollapse-go.pl \ + stackcollapse-instruments.pl \ + stackcollapse-jstack.pl \ + stackcollapse-ljp.awk \ + stackcollapse-perf.pl \ + stackcollapse-pmc.pl \ + stackcollapse-recursive.pl \ + stackcollapse-stap.pl \ + stackcollapse-vtune.pl \ + stackcollapse.pl + +do-install: +.for FILE in ${SOURCE_FILES} + ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}/${PREFIX}/bin/${FILE} +.endfor + +.include Property changes on: head/benchmarks/flamegraph/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/flamegraph/distinfo =================================================================== --- head/benchmarks/flamegraph/distinfo (nonexistent) +++ head/benchmarks/flamegraph/distinfo (revision 437514) @@ -0,0 +1,3 @@ +TIMESTAMP = 1491067519 +SHA256 (brendangregg-FlameGraph-g20170308-74764af_GH0.tar.gz) = f9b45d8df7e606749d86f86a7d83be63796aba42499362f20f8dcebfd2058cc4 +SIZE (brendangregg-FlameGraph-g20170308-74764af_GH0.tar.gz) = 960356 Property changes on: head/benchmarks/flamegraph/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/flamegraph/pkg-descr =================================================================== --- head/benchmarks/flamegraph/pkg-descr (nonexistent) +++ head/benchmarks/flamegraph/pkg-descr (revision 437514) @@ -0,0 +1,10 @@ +a stack-trace visualizer + +Flame Graphs visualize profiled code. Flame graphs can be created in three +steps: 1) Capture stacks, 2) Fold stacks, 3) flamegraph.pl. +Capturing stacks can be done with Linux perf_events, FreeBSD pmcstat (hwpmc), +DTrace, SystemTap, and many other profilers. See stackcollapse-* +converters. These stackcollapse scripts are used to fold the stacks. +Flamegraph SVGs are created using the flamegraph.pl script. + +WWW: https://github.com/brendangregg/FlameGraph Property changes on: head/benchmarks/flamegraph/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/flamegraph/pkg-plist =================================================================== --- head/benchmarks/flamegraph/pkg-plist (nonexistent) +++ head/benchmarks/flamegraph/pkg-plist (revision 437514) @@ -0,0 +1,19 @@ +bin/aix-perf.pl +bin/difffolded.pl +bin/files.pl +bin/flamegraph.pl +bin/pkgsplit-perf.sh +bin/range-perf.pl +bin/stackcollapse-aix.pl +bin/stackcollapse-elfutils.pl +bin/stackcollapse-gdb.pl +bin/stackcollapse-go.pl +bin/stackcollapse-instruments.pl +bin/stackcollapse-jstack.pl +bin/stackcollapse-ljp.awk +bin/stackcollapse-perf.pl +bin/stackcollapse-pmc.pl +bin/stackcollapse-recursive.pl +bin/stackcollapse-stap.pl +bin/stackcollapse-vtune.pl +bin/stackcollapse.pl Property changes on: head/benchmarks/flamegraph/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property