From: Eli Zaretskii <eliz@gnu.org>
To: stephen@xemacs.org
Cc: dancol@dancol.org, dak@gnu.org, emacs-devel@gnu.org
Subject: Re: Contributing LLVM.org patches to gud.el
Date: Thu, 12 Feb 2015 18:26:01 +0200 [thread overview]
Message-ID: <83iof75c6e.fsf@gnu.org> (raw)
In-Reply-To: <838ug477ox.fsf@gnu.org>
> Date: Wed, 11 Feb 2015 18:07:42 +0200
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: dancol@dancol.org, dak@gnu.org, emacs-devel@gnu.org
>
> > From: "Stephen J. Turnbull" <stephen@xemacs.org>
> > Cc: David Kastrup <dak@gnu.org>,
> > Eli Zaretskii <eliz@gnu.org>,
> > emacs-devel@gnu.org
> > Date: Wed, 11 Feb 2015 22:22:24 +0900
> >
> > Eli mentioned DWARF 2. The manual for GCC 4.8.4 says:
> >
> > -g
> > Produce debugging information in the operating system's native format
> > (stabs, COFF, XCOFF, or DWARF 2). GDB can work with this debugging
> > information.
> >
> > Later there is an option for specifying the version of DWARF, which
> > cautions that use of DWARF 4 "may require gdb 7 and
> > -fvar-tracking-assignments". I'll have to try that.
AFAIU, -fvar-tracking-assignments is automatically turned on when
compiling an optimized program. The GCC manual says:
-fvar-tracking
Run variable tracking pass. It computes where variables are
stored at each position in code. Better debugging information is
then generated (if the debugging information format supports
this information).
It is enabled by default when compiling with optimization (-Os,
-O, -O2, ...), debugging information (-g) and the debug info
format supports it.
-fvar-tracking-assignments
Annotate assignments to user variables early in the compilation
and attempt to carry the annotations over throughout the
compilation all the way to the end, in an attempt to improve
debug information while optimizing. Use of -gdwarf-4 is
recommended along with it.
It can be enabled even if var-tracking is disabled, in which
case annotations are created and maintained, but discarded at
the end.
The part about -fvar-tracking-assignments is confusing, but this
discussion seems to clarify that:
https://gcc.gnu.org/ml/gcc-help/2015-01/msg00152.html
https://gcc.gnu.org/ml/gcc-help/2015-01/msg00155.html
My take of this is that if you have a recent enough GCC and GDB, you
are already using this feature in optimized programs, and any
variables that are still announced as "<optimized out>" are those
which this feature is not (yet) good enough to fix.
next prev parent reply other threads:[~2015-02-12 16:26 UTC|newest]
Thread overview: 124+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-05 7:46 Contributing LLVM.org patches to gud.el Andrew L. Moore
2015-02-05 8:53 ` David Kastrup
2015-02-05 14:15 ` Stefan Monnier
2015-02-06 12:41 ` Richard Stallman
2015-02-06 12:49 ` David Kastrup
2015-02-06 18:21 ` Richard Stallman
2015-02-06 19:00 ` Stefan Monnier
2015-02-07 8:46 ` Helmut Eller
2015-02-07 10:18 ` David Kastrup
2015-02-07 11:42 ` Helmut Eller
2015-02-07 11:53 ` David Kastrup
2015-02-09 0:06 ` Richard Stallman
2015-02-09 3:27 ` Stephen J. Turnbull
2015-02-15 22:50 ` Richard Stallman
2015-02-16 5:19 ` Stephen J. Turnbull
2015-02-16 16:23 ` Richard Stallman
2015-02-09 11:21 ` David Kastrup
2015-02-09 14:21 ` Stefan Monnier
2015-02-09 22:07 ` Richard Stallman
2015-02-09 23:59 ` David Kastrup
2015-02-10 2:40 ` Stefan Monnier
2015-02-10 3:52 ` Eli Zaretskii
2015-02-10 8:59 ` David Kastrup
2015-02-10 16:00 ` Eli Zaretskii
2015-02-10 16:41 ` David Kastrup
2015-02-10 16:58 ` Eli Zaretskii
2015-02-11 3:43 ` Stephen J. Turnbull
2015-02-11 3:47 ` Daniel Colascione
2015-02-11 10:37 ` David Kastrup
2015-02-11 10:51 ` Daniel Colascione
2015-02-11 13:22 ` Stephen J. Turnbull
2015-02-11 16:07 ` Eli Zaretskii
2015-02-12 16:26 ` Eli Zaretskii [this message]
2015-02-12 17:42 ` Daniel Colascione
2015-02-12 20:15 ` Eli Zaretskii
2015-02-11 15:54 ` Eli Zaretskii
2015-02-11 23:12 ` Richard Stallman
2015-02-11 15:42 ` Eli Zaretskii
2015-02-11 15:41 ` Eli Zaretskii
2015-02-12 4:20 ` Stephen J. Turnbull
2015-02-12 11:23 ` David Kastrup
2015-02-12 13:13 ` Stephen J. Turnbull
2015-02-12 15:52 ` Eli Zaretskii
2015-02-11 4:26 ` Stephen J. Turnbull
2015-02-11 7:44 ` Nicholas Allegra
2015-02-11 15:43 ` Eli Zaretskii
2015-02-11 16:21 ` Stefan Monnier
2015-02-11 16:27 ` David Kastrup
2015-02-11 16:42 ` Eli Zaretskii
2015-02-12 5:41 ` Stephen J. Turnbull
2015-02-12 16:33 ` Eli Zaretskii
2015-02-12 18:29 ` Stephen J. Turnbull
2015-02-12 17:34 ` Richard Stallman
2015-02-10 17:03 ` David Engster
2015-02-10 17:18 ` Eli Zaretskii
2015-02-10 17:36 ` David Engster
2015-02-10 19:15 ` Eli Zaretskii
2015-02-10 20:25 ` David Engster
2015-02-10 22:49 ` Richard Stallman
2015-02-11 10:35 ` David Kastrup
2015-02-11 23:12 ` Richard Stallman
2015-02-10 18:07 ` David Kastrup
2015-02-10 19:21 ` Eli Zaretskii
2015-02-10 20:33 ` Stefan Monnier
2015-02-11 23:08 ` Richard Stallman
2015-02-09 16:08 ` Eli Zaretskii
2015-02-09 22:08 ` Richard Stallman
2015-02-09 20:00 ` Florian Weimer
2015-02-07 14:46 ` Stefan Monnier
2015-02-07 22:40 ` Richard Stallman
2015-02-07 23:04 ` David Kastrup
2015-02-08 0:15 ` Eric S. Raymond
2015-02-08 0:51 ` David Kastrup
2015-02-09 20:04 ` Perry E. Metzger
2015-02-10 22:49 ` Richard Stallman
2015-02-11 16:17 ` Perry E. Metzger
2015-02-11 23:13 ` Richard Stallman
2015-02-11 23:37 ` Perry E. Metzger
2015-02-12 11:22 ` David Kastrup
2015-02-12 14:45 ` Stephen J. Turnbull
2015-02-12 17:34 ` Richard Stallman
2015-02-13 10:11 ` Tom
2015-02-13 10:20 ` Eli Zaretskii
2015-02-13 10:27 ` Tom
2015-02-13 11:00 ` Eli Zaretskii
2015-02-14 15:22 ` Richard Stallman
2015-02-12 11:08 ` David Kastrup
2015-02-14 15:22 ` Richard Stallman
2015-02-11 23:13 ` Richard Stallman
2015-02-12 10:28 ` David Kastrup
2015-02-13 9:25 ` Richard Stallman
2015-02-09 20:13 ` Florian Weimer
2015-02-10 22:49 ` Richard Stallman
2015-02-08 3:55 ` Liang Wang
2015-02-08 9:30 ` David Kastrup
2015-02-09 0:04 ` Richard Stallman
2015-02-09 8:47 ` David Kastrup
2015-02-09 22:07 ` Richard Stallman
2015-02-09 23:03 ` David Kastrup
2015-02-11 23:09 ` Richard Stallman
2015-02-09 16:15 ` Robin Templeton
2015-02-09 20:13 ` Perry E. Metzger
2015-02-09 22:08 ` Richard Stallman
2015-02-10 8:24 ` Helmut Eller
2015-02-10 9:31 ` David Kastrup
2015-02-10 10:44 ` Helmut Eller
2015-02-10 10:53 ` David Kastrup
2015-02-10 12:45 ` Helmut Eller
2015-02-10 13:35 ` David Kastrup
2015-02-10 15:42 ` Yann Hodique
2015-02-10 16:11 ` David Kastrup
2015-02-10 22:49 ` Richard Stallman
2015-02-11 10:20 ` David Kastrup
2015-02-11 15:16 ` Stefan Monnier
2015-02-11 23:13 ` Richard Stallman
2015-02-09 20:06 ` Florian Weimer
2015-02-09 20:34 ` David Kastrup
2015-02-10 22:46 ` Richard Stallman
2015-02-06 19:21 ` David Kastrup
2015-02-07 5:50 ` Stephen J. Turnbull
2015-02-06 14:57 ` Stefan Monnier
2015-02-07 12:44 ` Richard Stallman
2015-02-07 14:48 ` Stefan Monnier
2015-02-07 22:41 ` Richard Stallman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=83iof75c6e.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=dak@gnu.org \
--cc=dancol@dancol.org \
--cc=emacs-devel@gnu.org \
--cc=stephen@xemacs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).