473,394 Members | 1,770 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Print function name of calling function?

Hi,

Is it possible to print the function name of the calling function?

For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().

BRs!

Feb 20 '07 #1
15 22769
In article <11**********************@l53g2000cwa.googlegroups .com>,
dspfun <ds****@hotmail.comwrote:
>Is it possible to print the function name of the calling function?
There is no facility for that in standard C.

>For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
Some systems provide extensions to allow the calling stack to
be examined, but C doesn't require it, and it isn't necessarily
easy even on systems where it can be done.
--
Programming is what happens while you're busy making other plans.
Feb 20 '07 #2
dspfun wrote:
Hi,

Is it possible to print the function name of the calling function?
Not portably.
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
So the caller can't rely on f3() behaving consistently?

If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.

Feb 20 '07 #3
On 20 Feb, 08:32, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
Hi,
Is it possible to print the function name of the calling function?

Not portably.
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().

So the caller can't rely on f3() behaving consistently?

If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.
In gdb it is possible to get a call trace, how can gdb get the call
trace? Does gdb use some OS-specific functions for this?

Feb 20 '07 #4
Yes it is possible in gdb. Use the command "bt" to get a stack trace.

On Feb 20, 4:42 pm, "dspfun" <dsp...@hotmail.comwrote:
On 20 Feb, 08:32, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
Hi,
Is it possible to print the function name of the calling function?
Not portably.
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
So the caller can't rely on f3() behaving consistently?
If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.

In gdb it is possible to get a call trace, how can gdb get the call
trace? Does gdb use some OS-specific functions for this?

Feb 20 '07 #5
dspfun wrote:
On 20 Feb, 08:32, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
Hi,
Is it possible to print the function name of the calling function?
Not portably.
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
So the caller can't rely on f3() behaving consistently?

If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.

In gdb it is possible to get a call trace, how can gdb get the call
trace? Does gdb use some OS-specific functions for this?
gdb uses system-specific ways to get the function's addresses, but
loads the compiler-generated debug info (including the calling
function's name) from the executable. In your own code, you cannot
even assume that your own program can read itself, let alone rely on a
specific debugging format.

Feb 20 '07 #6
On 20 Feb, 08:51, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
On 20 Feb, 08:32, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
Hi,
Is it possible to print the function name of the calling function?
Not portably.
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
So the caller can't rely on f3() behaving consistently?
If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.
In gdb it is possible to get a call trace, how can gdb get the call
trace? Does gdb use some OS-specific functions for this?

gdb uses system-specific ways to get the function's addresses, but
loads the compiler-generated debug info (including the calling
function's name) from the executable. In your own code, you cannot
even assume that your own program can read itself, let alone rely on a
specific debugging format.- Dölj citerad text -

- Visa citerad text -
What is the reason that a program cannot read itself? Why can't the
program rely on the debugging format (except for portability reasons)?

Feb 20 '07 #7
dspfun wrote:
On 20 Feb, 08:51, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
On 20 Feb, 08:32, "Harald van Dijk" <true...@gmail.comwrote:
dspfun wrote:
Hi,
Is it possible to print the function name of the calling function?
Not portably.
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either bef1()
or f2().
So the caller can't rely on f3() behaving consistently?
If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.
In gdb it is possible to get a call trace, how can gdb get the call
trace? Does gdb use some OS-specific functions for this?
gdb uses system-specific ways to get the function's addresses, but
loads the compiler-generated debug info (including the calling
function's name) from the executable. In your own code, you cannot
even assume that your own program can read itself, let alone rely on a
specific debugging format.

What is the reason that a program cannot read itself?
Many reasons, but for a simple one, on a Unix-like system, try chmod a-
r executable. You (and thus the program) won't be able to read it, but
you can still run it.
Why can't the
program rely on the debugging format (except for portability reasons)?
Well, if you don't count the reasons that a program cannot rely on a
specific debug format, then there are no reasons. :) Seriously, the
debugging format is not even sure to remain the same with different
versions of the same compiler for the same system.

Feb 20 '07 #8
dspfun wrote:
Hi,

Is it possible to print the function name of the calling function?

For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
If you want functions to know the names of their callers, pass it as an
argument.
Feb 20 '07 #9
On Feb 20, 8:26 am, "dspfun" <dsp...@hotmail.comwrote:
Hi,

Is it possible to print the function name of the calling function?

For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
If I remember correctly, a C99 implementation should implement the
__func__ identifier. It's implicitly declared and equals to
static const char __func__[] = "function-name";
--
WYCIWYG - what you C is what you get

Feb 20 '07 #10
matevzb wrote:
On Feb 20, 8:26 am, "dspfun" <dsp...@hotmail.comwrote:
Hi,

Is it possible to print the function name of the calling function?

For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
If I remember correctly, a C99 implementation should implement the
__func__ identifier. It's implicitly declared and equals to
static const char __func__[] = "function-name";
You are correct. However, __func__ contains the name of the current
function, not of the calling function.

Feb 20 '07 #11
On Feb 20, 10:09 am, "Harald van Dijk" <true...@gmail.comwrote:
matevzb wrote:
On Feb 20, 8:26 am, "dspfun" <dsp...@hotmail.comwrote:
Hi,
Is it possible to print the function name of the calling function?
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
If I remember correctly, a C99 implementation should implement the
__func__ identifier. It's implicitly declared and equals to
static const char __func__[] = "function-name";

You are correct. However, __func__ contains the name of the current
function, not of the calling function.
Sorry, I misread the OP's question. In that case it's probably best if
the __func__ is passed to the called function.
--
WYCIWYG - what you C is what you get

Feb 20 '07 #12
Is it possible to print the function name of the calling function?
>
Not portably.

For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().

So the caller can't rely on f3() behaving consistently?

If you need more info than you pass in the function arguments, the
obvious suggestion is to simply add some more function arguments.

In gdb it is possible to get a call trace, how can gdb get the call
trace? Does gdb use some OS-specific functions for this?

gdb uses system-specific ways to get the function's addresses, but
loads the compiler-generated debug info (including the calling
function's name) from the executable. In your own code, you cannot
even assume that your own program can read itself, let alone rely on a
specific debugging format.
It gets worse than that. Also, gdb has been known to get this
WRONG, especially if something managed to clobber the stack (if
there is one) frame.

- You cannot assume that your own program can even FIND itself. argv[0]
need not be a *file* name. Also, it's easy for malicious invokers to
fake this information. Same goes for getenv("PATH").
- Not all systems have things like /proc/curproc/file (FreeBSD) or
/proc/self/exe (Linux) which provide a symlink to the executable.
You still might not have permission to access it in any case.
- You cannot assume that you have read permission on the executable.
Execute-only permission is possible in a number of operating systems.
Plus, the higher-level directory permissions may not permit access.
- You cannot assume that you can open the executable for read while it's
running. Some operating systems give an ETXTBSY error. (More give
ETXTBSY if you try opening for *write*).
- You cannot assume that the executable has any debugging symbols in *ANY*
format, much less one that you can interpret. They may not be generated,
or they may be stripped off later for production use. Among other things,
in a large software distribution, those symbols can take up a lot of
disk space. And closed-source software distributions will probably remove
symbols to avoid giving away too much information.
- Even if the executable has debugging symbols, you may not have all the
debugging symbols you need (e.g. for libraries, static-linked or dynamic-
linked). Sometimes a library function can call YOUR function (e.g.
qsort calling a compare function).
- Finding the symbols for a dynamic-linked library can be very
system-dependent. No, you can't depend on having dynamic-linked libraries,
but neither can you depend on NOT having them.
- Even if you have all the function addresses, stack (if there is one) frame
formats and calling sequences are very system-dependent.
- The symbol associated with the function name may bear minimal resemblance
to the actual function name (C++ name-mangling, for example).

Feb 21 '07 #13
Is it possible to print the function name of the calling function?
>
For example, f1() and f2() both calls f3(), in f3() I would like to
print the name of the function calling f3() which could either be f1()
or f2().
If I remember correctly, a C99 implementation should implement the
__func__ identifier. It's implicitly declared and equals to
static const char __func__[] = "function-name";

You are correct. However, __func__ contains the name of the current
function, not of the calling function.
True, but you could still use it to advantage. Define an N-argument
macro f3(), which calls f3_real() with the N arguments plus an added
one, passed as __func__. Now, the name of the calling function is
passed automatically.
Feb 21 '07 #14
Harald van D?k wrote:
matevzb wrote:
>On Feb 20, 8:26 am, "dspfun" <dsp...@hotmail.comwrote:
>>>
Is it possible to print the function name of the calling function?

For example, f1() and f2() both calls f3(), in f3() I would like
to print the name of the function calling f3() which could either
be f1() or f2().

If I remember correctly, a C99 implementation should implement the
__func__ identifier. It's implicitly declared and equals to
static const char __func__[] = "function-name";

You are correct. However, __func__ contains the name of the current
function, not of the calling function.
Exactly. So where do you think the '__func__' should be used? The
result is a char* pointer, which you can pass wherever you think it
might be of interest.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
Feb 21 '07 #15
On Feb 20, 5:51 pm, gordonb.vr...@burditt.org (Gordon Burditt) wrote:
gdb uses system-specific ways to get the function's addresses, but
loads the compiler-generated debug info (including the calling
function's name) from the executable. In your own code, you cannot
even assume that your own program can read itself, let alone rely on a
specific debugging format.

It gets worse than that. Also, gdb has been known to get this
WRONG, especially if something managed to clobber the stack (if
there is one) frame.

While I can't speak to GDB, I've seen plenty of situations where
somewhat odd (but still valid) stack frames exist due to various sorts
of optimization, and which confuse things trying to trace "standard"
stack frames.

Inlined functions will often have that attribute.

Feb 21 '07 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: DOA | last post by:
Help! I've been doing C language development for a long time, but this problem has me stumped. I would like the user to be able to enter the name of a function that has been linked into the...
6
by: SDK Builder | last post by:
Found this in CSS group - instant function/style/tag... search for PHP, CSS, HTML, MySQL etc. Here: http://www.gotapi.com For PHP you click Add/Remove on top and load PHP modue. Some other...
10
by: Richard Heathfield | last post by:
Stephen Sprunk said: <snip> Almost. A function name *is* a pointer-to-function. You can do two things with it - copy it (assign its value to an object of function pointer type, with a...
12
by: sinbad | last post by:
hi, is it possible to get function name from function pointer. I am using gcc compiler on linux. thanks
4
by: conics | last post by:
what can i do when on compiling a "C" program i have arrive at the error of out of memory in function <name of function> thanks in advance.. conics
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.