From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17003 invoked by alias); 30 May 2002 10:12:28 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 16987 invoked from network); 30 May 2002 10:12:27 -0000 Received: from unknown (HELO potter.sfbay.redhat.com) (205.180.83.107) by sources.redhat.com with SMTP; 30 May 2002 10:12:27 -0000 Received: from dot.sfbay.redhat.com (dot.sfbay.redhat.com [172.16.24.7]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g4UAAQv26771; Thu, 30 May 2002 03:10:26 -0700 Received: (from rth@localhost) by dot.sfbay.redhat.com (8.11.6/8.11.6) id g4UACQ304996; Thu, 30 May 2002 03:12:26 -0700 X-Authentication-Warning: dot.sfbay.redhat.com: rth set sender to rth@redhat.com using -f Date: Thu, 30 May 2002 03:12:00 -0000 From: Richard Henderson To: Michal Ludvig Cc: gcc@gcc.gnu.org, gdb Subject: Re: What is LSDA? Message-ID: <20020530031226.B4984@redhat.com> Mail-Followup-To: Richard Henderson , Michal Ludvig , gcc@gcc.gnu.org, gdb References: <3CF4CC74.9050307@suse.cz> <20020529110320.I4168@redhat.com> <3CF5D7D7.40107@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3CF5D7D7.40107@suse.cz>; from mludvig@suse.cz on Thu, May 30, 2002 at 09:42:15AM +0200 X-SW-Source: 2002-05/txt/msg00328.txt.bz2 On Thu, May 30, 2002 at 09:42:15AM +0200, Michal Ludvig wrote: > What other differences can I expect between eh_frame and debug_frame? > For now I handle both of them almost in the same way. > Exceptions are: Different CIE-id, different way of finding the right CIE > for a given FDE, and from now on ignoring LSDA in eh_frame. > Is there something else? The encoding of the addresses can be substantially different. Pc-relative and base-relative are the popular ones. You'd need target-specific hackery to know what the base address is for the base-relative addresses. That more and more differences crept in is the reason why we no longer attempt to emit only one of .debug_frame or .eh_frame. r~