From owner-freebsd-performance@FreeBSD.ORG Thu Jan 24 01:59:00 2008 Return-Path: Delivered-To: freebsd-performance@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A85DD16A41B; Thu, 24 Jan 2008 01:59:00 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D113013C44B; Thu, 24 Jan 2008 01:58:58 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <4797F0E0.8050201@FreeBSD.org> Date: Thu, 24 Jan 2008 02:58:56 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: Kris Kennaway References: <4796C717.9000507@cederstrand.dk> <47972895.4050005@FreeBSD.org> <479745DA.8010003@cederstrand.dk> <47979153.8090100@FreeBSD.org> In-Reply-To: <47979153.8090100@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-performance@freebsd.org" , Erik Cederstrand Subject: Re: Performance Tracker project update X-BeenThere: freebsd-performance@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Performance/tuning List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jan 2008 01:59:00 -0000 Kris Kennaway wrote: >>> P.S. If I understand correctly, the float test shows a regression? >>> The metric is calculations/second, so higher = better? >> >> The documentation on Unixbench is scarce, but I would think so. > > Interesting. Some candidate changes from 2007-10-02: > > Modified files: > contrib/gcc opts.c > Log: > Do not imply -ftree-vrp with -O2 and above. One must implicitly specify > '-ftree-vrp' if one wants it. > Some bad code generation has been tracked to -ftree-vrp. jdk1{5,6} are > notable examples. OK, so it was this one. The other interesting events seem to be: 2007-10-20: drop in super-smack performance and context switch benchmarks. This is due to the switch from SCHED_4BSD to SCHED_ULE (super-smack is largely a context switch benchmark due to retarded design). There are uncommitted patches that reduce ULE context switch overhead though, so it will be interesting to see how they affect this. 2007-12-30: file read/pipe read/pipe ping-pong/syscall overhead performance increases. This is due to Jeff's lockless struct file changes (syscall overhead is only affected because unixbench uses the dup2() syscall which is not in fact just a measure of syscall overhead but now has reduced non-syscall cost). Kris