From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: BASE_PURESIZE Date: Fri, 23 Oct 2009 16:24:09 +0200 Message-ID: References: <8363a6gytm.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1256307987 12373 80.91.229.12 (23 Oct 2009 14:26:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Oct 2009 14:26:27 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 23 16:26:20 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N1L5u-0006tH-7X for ged-emacs-devel@m.gmane.org; Fri, 23 Oct 2009 16:26:18 +0200 Original-Received: from localhost ([127.0.0.1]:42784 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N1L5t-00065q-KB for ged-emacs-devel@m.gmane.org; Fri, 23 Oct 2009 10:26:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N1L5o-00064y-62 for emacs-devel@gnu.org; Fri, 23 Oct 2009 10:26:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N1L5j-000638-Lg for emacs-devel@gnu.org; Fri, 23 Oct 2009 10:26:11 -0400 Original-Received: from [199.232.76.173] (port=40700 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N1L5j-000632-Ds for emacs-devel@gnu.org; Fri, 23 Oct 2009 10:26:07 -0400 Original-Received: from mail-bw0-f215.google.com ([209.85.218.215]:43087) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N1L5h-0000fG-BJ; Fri, 23 Oct 2009 10:26:06 -0400 Original-Received: by mail-bw0-f215.google.com with SMTP id 7so941231bwz.26 for ; Fri, 23 Oct 2009 07:26:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=Mz8PAPoa1YxfPxmCyciBEi6saGMUEM2VoqZm0EhjAUk=; b=v4Mh7Ptf5yDWG2uH8es/ARbD48qcmQMQIohOCmeY1WOhFmjDuAxbRhqImhLFHRg7HV pSe5ow4eAYo9TiNLyCowqFi2prC2YCbqMIfgQ3ijYDSNmakPv1UyhdqLnSZKcTM6GhcD 0ZGLQefROvxFDKJ53IWUdKPKM3hzrmfLv1opM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=v7cVF8nP6j3Yw/A+tWBNB5bwmBOXInSxs9ebRSLWGY+sjdh13Y7dKsiwDM2oPooBSJ J899/PSBZMXS38jIY056v+/iGpLC24j4k+ktA+ZVwKzxPfCsdmUz4y7NMLnvmcTj/eO7 x2y5YyzmS+NMAj1JHHBVRglbOsEheYVoREpkM= Original-Received: by 10.239.184.157 with SMTP id y29mr901060hbg.54.1256307964639; Fri, 23 Oct 2009 07:26:04 -0700 (PDT) In-Reply-To: <8363a6gytm.fsf@gnu.org> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:116327 Archived-At: On Fri, Oct 23, 2009 at 13:00, Eli Zaretskii wrote: > I looked at the values of pure_size vs pure_bytes_used in several > builds on several platforms, and I see that we are wasting at least > 130KB: > > =C2=A0 =C2=A0MS-Windows: > =C2=A0 =C2=A0(gdb) p pure_size > =C2=A0 =C2=A0$1 =3D 1480000 > =C2=A0 =C2=A0(gdb) p pure_bytes_used > =C2=A0 =C2=A0$2 =3D 1357888 With this system-configuration-options --with-gcc (4.4) --cflags -DENABLE_CHECKING=3D1 -DXASSERTS=3D1 -IC:/emacs/build/include -fno-crossjumping on Windows I get (gdb) p pure_size $1 =3D 1776000 (gdb) p pure_bytes_used $2 =3D 1518217 or about 252 KiB wasted. Juanma