This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

The 'cold' function attribute and GDB


If some functions in your program are declared with
__attribute__((cold)), GCC generates local symbols of the form
FOO.cold, where FOO is a function that has a code path which
eventually calls one of the 'cold' functions.  When GDB needs to show
a backtrace or a stack frame inside one of these code paths, it shows
FOO.cold as the name of the function.  Here's a real-life example:

  Thread 1 received signal SIGTRAP, Trace/breakpoint trap.
  0x76a63227 in KERNELBASE!DebugBreak () from C:\Windows\syswow64\KernelBase.dll
  (gdb) thread 1
  [Switching to thread 1 (Thread 7552.0x172c)]
  #0  0x76a63227 in KERNELBASE!DebugBreak ()
     from C:\Windows\syswow64\KernelBase.dll
  (gdb) up
  #1  0x012e7b89 in emacs_abort () at w32fns.c:10768
  10768         DebugBreak ();
  (gdb)
  #2  0x012e1f3b in print_vectorlike.cold () at print.c:1824  <<<<<<<<<<<<<<<<
  1824          emacs_abort ();
  (gdb) bt
  #0  0x76a63227 in KERNELBASE!DebugBreak ()
     from C:\Windows\syswow64\KernelBase.dll
  #1  0x012e7b89 in emacs_abort () at w32fns.c:10768
  #2  0x012e1f3b in print_vectorlike.cold () at print.c:1824  <<<<<<<<<<<<<<<<
  #3  0x011d2dec in print_object (obj=<optimized out>, printcharfun=XIL(0),
      escapeflag=true) at print.c:2150

There's a print_vectorlike function in Emacs, and it calls
emacs_abort, which is declared 'cold' (because it is called in case of
fatal errors and doesn't return).

Since the 'cold' functions tend to be those that are called in case of
some calamity, and since GDB is likely to be used to debug such
calamities, and the user is likely to put breakpoint in such 'cold'
functions precisely to catch these calamities, the above is not such a
rare use case as far as real-life use of GDB goes.

I think this display is confusing, but is there any reasonable way for
GDB not to expose these symbols to the user?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]