From: "Aktemur, Tankut Baris" <tankut.baris.aktemur@intel.com>
To: "gdb@sourceware.org" <gdb@sourceware.org>
Cc: "Metzger, Markus T" <markus.t.metzger@intel.com>
Subject: Infcall of a template function in a C++ program
Date: Fri, 07 Jun 2019 14:45:00 -0000 [thread overview]
Message-ID: <B98F7326B8E238409968F562D326E1A90D02E8E2@IRSMSX103.ger.corp.intel.com> (raw)
Dear All,
Suppose we have the following small C++ program:
~~~
#include <iostream>
template <typename T>
T foo (T t)
{
return t;
}
int main (void)
{
std::cout << foo (5) << std::endl;
std::cout << foo ('a') << std::endl;
return 0;
}
~~~
The compiler is able to do the type inference, template function
instantiation, and function invocation based on the expressions `foo (5)`
and `foo ('a')`. When we start GDB and attempt to evaluate these
expressions, the corresponding functions are not resolved, though.
Here is a sample session:
~~~
(gdb) start
...
(gdb) print foo(5)
No symbol "foo" in current context.
(gdb) print foo<int>(5)
$1 = 5
(gdb) print foo<char>('a')
$2 = 97 'a'
~~~
The DWARF info contains DIE's for the subprograms named "foo<int>" and
"foo<char>":
0x00002849: DW_TAG_subprogram
DW_AT_name ("foo<char>")
...
0x00002882: DW_TAG_subprogram
DW_AT_name ("foo<int>")
...
Is there any on-going or planned work to add type inference/resolution
capability to GDB so that an expression such as `foo (5)` would be evaluated
correctly? This might not be possible in general, but does GDB try any heuristics
to find the right template instance?
Regards,
-Tankut Baris Aktemur
Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Gary Kershaw
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
next reply other threads:[~2019-06-07 14:45 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-07 14:45 Aktemur, Tankut Baris [this message]
2019-06-26 8:59 ` Aktemur, Tankut Baris
2019-07-19 20:12 ` Tom Tromey
2019-07-23 14:51 ` Keith Seitz
2019-07-23 15:52 ` Tom Tromey
2019-07-23 16:24 ` Aktemur, Tankut Baris
2019-07-23 16:22 ` Aktemur, Tankut Baris
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=B98F7326B8E238409968F562D326E1A90D02E8E2@IRSMSX103.ger.corp.intel.com \
--to=tankut.baris.aktemur@intel.com \
--cc=gdb@sourceware.org \
--cc=markus.t.metzger@intel.com \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox