From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6595 invoked by alias); 28 Feb 2012 20:01:52 -0000 Received: (qmail 6585 invoked by uid 22791); 28 Feb 2012 20:01:51 -0000 X-SWARE-Spam-Status: No, hits=-0.5 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-ey0-f169.google.com (HELO mail-ey0-f169.google.com) (209.85.215.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 28 Feb 2012 20:01:39 +0000 Received: by eaal1 with SMTP id l1so603525eaa.0 for ; Tue, 28 Feb 2012 12:01:37 -0800 (PST) Received-SPF: pass (google.com: domain of daniel.jacobowitz@gmail.com designates 10.14.101.129 as permitted sender) client-ip=10.14.101.129; Authentication-Results: mr.google.com; spf=pass (google.com: domain of daniel.jacobowitz@gmail.com designates 10.14.101.129 as permitted sender) smtp.mail=daniel.jacobowitz@gmail.com; dkim=pass header.i=daniel.jacobowitz@gmail.com Received: from mr.google.com ([10.14.101.129]) by 10.14.101.129 with SMTP id b1mr11883495eeg.12.1330459297977 (num_hops = 1); Tue, 28 Feb 2012 12:01:37 -0800 (PST) MIME-Version: 1.0 Received: by 10.14.101.129 with SMTP id b1mr8922852eeg.12.1330459297787; Tue, 28 Feb 2012 12:01:37 -0800 (PST) Received: by 10.14.39.145 with HTTP; Tue, 28 Feb 2012 12:01:37 -0800 (PST) In-Reply-To: <83boojehhm.fsf@gnu.org> References: <83boojehhm.fsf@gnu.org> Date: Tue, 28 Feb 2012 20:01:00 -0000 Message-ID: Subject: Re: info address "range" From: Daniel Jacobowitz To: Eli Zaretskii Cc: gdb@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-02/txt/msg00073.txt.bz2 On Mon, Feb 27, 2012 at 10:58 PM, Eli Zaretskii wrote: > Re this: > > =A0(gdb) frame 2 > =A0#2 =A00x0100ffda in compact_small_strings () at alloc.c:2271 > =A02271 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0abort (); > =A0(gdb) info address from > =A0Symbol "from" is multi-location: > =A0 =A0Range 0x100f452-0x100f45c: a variable in $esi > > What exactly the "range xxxx-yyyy" mean? =A0There's nothing in the > manual about this format. =A0Is that the range of PC values? =A0If so, > then since the current frame address is not within those limits, it > seems, and therefore the information is not helpful. > > Is there any way of knowing where will the variable be found for the > current PC value? Most likely this means that if the current pc is outside of those limits, the variable is not available anywhere. --=20 Thanks, Daniel