From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3026 invoked by alias); 26 Jun 2011 20:06:36 -0000 Received: (qmail 3018 invoked by uid 22791); 26 Jun 2011 20:06:35 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-qw0-f47.google.com (HELO mail-qw0-f47.google.com) (209.85.216.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 26 Jun 2011 20:06:20 +0000 Received: by qwh5 with SMTP id 5so2277044qwh.20 for ; Sun, 26 Jun 2011 13:06:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.79.196 with SMTP id q4mr3579949qck.132.1309118777562; Sun, 26 Jun 2011 13:06:17 -0700 (PDT) Received: by 10.229.238.19 with HTTP; Sun, 26 Jun 2011 13:06:17 -0700 (PDT) In-Reply-To: <4E078E58.20903@redhat.com> References: <20110625161357.GA5401@intel.com> <4E078E58.20903@redhat.com> Date: Sun, 26 Jun 2011 21:45:00 -0000 Message-ID: Subject: Re: PATCH [8/n]: Prepare x32: PR other/48007: Unwind library doesn't work with UNITS_PER_WORD > sizeof (void *) From: "H.J. Lu" To: Jason Merrill Cc: gcc-patches@gcc.gnu.org, Richard Henderson Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-06/txt/msg01948.txt.bz2 On Sun, Jun 26, 2011 at 12:54 PM, Jason Merrill wrote: > On 06/25/2011 12:13 PM, H.J. Lu wrote: >> >> This patch introduces UNIQUE_UNWIND_CONTEXT > > Where is this documented? =A0The ABI document doesn't seem to say anything > about it. > I added a short paragraph in the updated patch: http://gcc.gnu.org/ml/gcc-patches/2011-06/msg01922.html +@defmac UNIQUE_UNWIND_CONTEXT + +Define this macro if the target only supports single unqiue unwind +context. The default is to support multiple unwind contexts. + +@end defmac This is the implementation detail and isn't required by the ABI. With the unique unwind context, we can update the unwind context format without breaking binary compatibility. Thanks. --=20 H.J.