From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8229 invoked by alias); 12 Jun 2003 16:03:02 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 8218 invoked from network); 12 Jun 2003 16:03:01 -0000 Received: from unknown (HELO lacrosse.corp.redhat.com) (66.187.233.200) by sources.redhat.com with SMTP; 12 Jun 2003 16:03:01 -0000 Received: from toribio.toronto.redhat.com (IDENT:lv9Ikn6umDuDMf+I/VH7NOrN3ufhRHoK@tornado.toronto.redhat.com [172.16.14.228]) by lacrosse.corp.redhat.com (8.11.6/8.9.3) with ESMTP id h5CG2wK29836; Thu, 12 Jun 2003 12:02:58 -0400 Subject: Re: tree-ssa branch: Call for preliminary testing From: Diego Novillo To: Richard Guenther Cc: "gcc@gcc.gnu.org" In-Reply-To: References: Content-Type: text/plain Organization: Red Hat Canada Message-Id: <1055433764.824.297.camel@frodo.toronto.redhat.com> Mime-Version: 1.0 Date: Thu, 12 Jun 2003 16:09:00 -0000 Content-Transfer-Encoding: 7bit X-SW-Source: 2003-06/txt/msg01070.txt.bz2 On Mon, 2003-05-12 at 09:01, Richard Guenther wrote: > Got it compile on a 2Gig machine - .ii file can be fetched from > > http://www.tat.physik.uni-tuebingen.de/~rguenth/FieldCentering.cmpl.ii.gz > > the test uses max. 1.5GB ram on this machine. > > Richard. > Seems partially fixed now. It takes 19 minutes to compile, though. But! it doesn't use more than 300Mb of core now. $ /usr/bin/time gcc/cc1plus -ftemplate-depth-80 -fno-exceptions -Drestrict=__restrict__ -DNOPAssert -DNOCTAssert -O2 -march=athlon -funroll-loops -fomit-frame-pointer --param min-inline-insns=200 -quiet FieldCentering.cmpl.ii 1106.46user 1.19system 18:55.17elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (1205major+142535minor)pagefaults 0swaps In contrast, this uses 200Mb of core in mainline and takes 17 seconds to compile. I'm thinking this and Gerald's PR8361 are good test cases :) $ /usr/bin/time ~/merge-tree-ssa/mainline/native/bld.tobiano/gcc/cc1plus -ftemplate-depth-80 -fno-exceptions -Drestrict=__restrict__ -DNOPAssert -DNOCTAssert -O2 -march=athlon -funroll-loops -fomit-frame-pointer --param min-inline-insns=200 -quiet FieldCentering.cmpl.ii 16.29user 0.75system 0:17.13elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (1134major+109771minor)pagefaults 0swaps Diego.