From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14668 invoked by alias); 20 Mar 2013 18:29:55 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 13159 invoked by uid 89); 20 Mar 2013 18:29:43 -0000 X-Spam-SWARE-Status: No, score=-8.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 20 Mar 2013 18:29:42 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r2KITefd018507 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 20 Mar 2013 14:29:41 -0400 Received: from barimba (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r2KITd7I014329 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 20 Mar 2013 14:29:40 -0400 From: Tom Tromey To: gdb-patches@sourceware.org Subject: Re: [2/3] RFC: merge symbol "ops" and "aclass" fields References: <8738y1hzzz.fsf@fleche.redhat.com> <874ngd4ten.fsf@fleche.redhat.com> Date: Wed, 20 Mar 2013 18:33:00 -0000 In-Reply-To: <874ngd4ten.fsf@fleche.redhat.com> (Tom Tromey's message of "Thu, 14 Mar 2013 14:29:20 -0600") Message-ID: <87a9px9b70.fsf@fleche.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2013-03/txt/msg00763.txt.bz2 Tom> I never fully understood the plan to merge the "ops" and "aclass" fields Tom> of struct symbol until I stumbled across PR 8421, which explains the Tom> idea in a bit more detail than the FIXME comment in symtab.h. Tom> This patch implements the idea outlined there. We drop the "ops" field Tom> entirely and replace "aclass" with "aclass_index" (the renaming makes it Tom> obvious that there is a change). Tom> Here is a version of this patch which incorporates Jan's various Tom> changes. I'm checking this in now. I rebased and re-regtested it, this time on x86-64 Fedora 18. Tom