1 /* go-caller.c -- look up function/file/line/entry info
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 /* Implement runtime.Caller. */
10 #include <sys/types.h>
14 #include "backtrace.h"
18 /* Get the function name, file name, and line number for a PC value.
19 We use the backtrace library to get this. */
21 /* Data structure to gather file/line information. */
33 /* Collect file/line information for a PC value. If this is called
34 more than once, due to inlined functions, we record the number of
35 inlined frames but return file/func/line for the last call, as
36 that is usually the most useful one. */
39 callback (void *data
, uintptr_t pc
__attribute__ ((unused
)),
40 const char *filename
, int lineno
, const char *function
)
42 struct caller
*c
= (struct caller
*) data
;
44 /* We want to make sure we return at least one frame. If we already
45 have at least one frame, see if we should skip this one. */
48 && runtime_skipInCallback (function
, NULL
))
51 /* If we already have a frame, don't increment frames if we should
55 || !runtime_skipInCallback ((const char *) c
->fn
.str
, NULL
))
58 /* The libbacktrace library says that these strings might disappear,
59 but with the current implementation they won't. We can't easily
60 allocate memory here, so for now assume that we can save a
61 pointer to the strings. */
62 c
->fn
= runtime_gostringnocopy ((const byte
*) function
);
63 c
->file
= runtime_gostringnocopy ((const byte
*) filename
);
68 /* If we should skip the frame we have, then see if we can get
71 && runtime_skipInCallback((const char *) c
->fn
.str
, NULL
))
83 /* The error callback for backtrace_pcinfo and backtrace_syminfo. */
86 error_callback (void *data
__attribute__ ((unused
)),
87 const char *msg
, int errnum
)
92 runtime_printf ("%s errno %d\n", msg
, errnum
);
96 /* The backtrace library state. */
98 static void *back_state
;
100 /* A lock to control creating back_state. */
102 static uint32 back_state_lock
;
104 /* The program arguments. */
106 extern Slice
runtime_get_args(void);
108 /* Fetch back_state, creating it if necessary. */
110 struct backtrace_state
*
111 __go_get_backtrace_state ()
115 /* We may not have a g here, so we can't use runtime_lock. */
117 while (!__atomic_compare_exchange_n (&back_state_lock
, &set
, 1, false, __ATOMIC_ACQUIRE
, __ATOMIC_RELAXED
))
122 if (back_state
== NULL
)
125 const char *filename
;
128 args
= runtime_get_args();
130 if (args
.__count
> 0)
131 filename
= (const char*)((String
*)args
.__values
)[0].str
;
133 /* If there is no '/' in FILENAME, it was found on PATH, and
134 might not be the same as the file with the same name in the
135 current directory. */
136 if (filename
!= NULL
&& __builtin_strchr (filename
, '/') == NULL
)
139 /* If the file is small, then it's not the real executable.
140 This is specifically to deal with Docker, which uses a bogus
141 argv[0] (http://gcc.gnu.org/PR61895). It would be nice to
142 have a better check for whether this file is the real
144 if (filename
!= NULL
&& (stat (filename
, &s
) < 0 || s
.st_size
< 1024))
147 back_state
= backtrace_create_state (filename
, 1, error_callback
, NULL
);
149 __atomic_store_n (&back_state_lock
, 0, __ATOMIC_RELEASE
);
153 /* Return function/file/line/nframes information for PC. The index
154 parameter is the entry on the stack of inlined functions; -1 means
155 the last one, with *nframes set to the count of inlined frames for
156 this PC. If index is not -1, more is whether there are more frames
160 __go_file_line (uintptr pc
, int index
, bool more
, String
*fn
, String
*file
, intgo
*line
, intgo
*nframes
)
163 struct backtrace_state
*state
;
165 runtime_memclr (&c
, sizeof c
);
169 runtime_xadd (&__go_runtime_in_callers
, 1);
170 state
= __go_get_backtrace_state ();
171 runtime_xadd (&__go_runtime_in_callers
, -1);
172 backtrace_pcinfo (state
, pc
, callback
, error_callback
, &c
);
178 // If backtrace_pcinfo didn't get the function name from the debug
179 // info, try to get it from the symbol table.
181 backtrace_syminfo (state
, pc
, __go_syminfo_fnname_callback
,
184 return c
.file
.len
> 0;
187 /* Collect symbol information. */
190 syminfo_callback (void *data
, uintptr_t pc
__attribute__ ((unused
)),
191 const char *symname
__attribute__ ((unused
)),
192 uintptr_t address
, uintptr_t size
__attribute__ ((unused
)))
194 uintptr_t *pval
= (uintptr_t *) data
;
199 /* Set *VAL to the value of the symbol for PC. */
202 __go_symbol_value (uintptr pc
, uintptr
*val
)
204 struct backtrace_state
*state
;
207 runtime_xadd (&__go_runtime_in_callers
, 1);
208 state
= __go_get_backtrace_state ();
209 runtime_xadd (&__go_runtime_in_callers
, -1);
210 backtrace_syminfo (state
, pc
, syminfo_callback
,
211 error_callback
, val
);
215 /* The values returned by runtime.Caller. */
225 struct caller_ret
Caller (intgo n
) __asm__ (GOSYM_PREFIX
"runtime.Caller");
227 /* Implement runtime.Caller. */
232 struct caller_ret ret
;
236 runtime_memclr (&ret
, sizeof ret
);
237 n
= runtime_callers (skip
+ 1, &loc
, 1, false);
238 if (n
< 1 || loc
.pc
== 0)
241 ret
.file
= loc
.filename
;
242 ret
.line
= loc
.lineno
;
247 /* Look up the function name, file name, and line number for a PC. */
249 struct funcfileline_return
250 runtime_funcfileline (uintptr targetpc
, int32 index
, bool more
)
252 struct funcfileline_return ret
;
254 if (!__go_file_line (targetpc
, index
, more
, &ret
.retfn
, &ret
.retfile
,
255 &ret
.retline
, &ret
.retframes
))
256 runtime_memclr (&ret
, sizeof ret
);
260 /* Return the entry point of a function. */
261 uintptr
runtime_funcentry(uintptr
)
262 __asm__ (GOSYM_PREFIX
"runtime.funcentry");
265 runtime_funcentry (uintptr pc
)
269 if (!__go_symbol_value (pc
, &val
))