* gimple-ssa-store-merging.c (struct store_immediate_info): Add
[official-gcc.git] / libbacktrace / print.c
blobd19fc17b2860e3d12b23b8b697462dde3ad571c7
1 /* print.c -- Print the current backtrace.
2 Copyright (C) 2012-2017 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Google.
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
9 (1) Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
12 (2) Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in
14 the documentation and/or other materials provided with the
15 distribution.
17 (3) The name of the author may not be used to
18 endorse or promote products derived from this software without
19 specific prior written permission.
21 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 POSSIBILITY OF SUCH DAMAGE. */
33 #include "config.h"
35 #include <stdio.h>
36 #include <string.h>
37 #include <sys/types.h>
39 #include "backtrace.h"
40 #include "internal.h"
42 /* Passed to callbacks. */
44 struct print_data
46 struct backtrace_state *state;
47 FILE *f;
50 /* Print one level of a backtrace. */
52 static int
53 print_callback (void *data, uintptr_t pc, const char *filename, int lineno,
54 const char *function)
56 struct print_data *pdata = (struct print_data *) data;
58 fprintf (pdata->f, "0x%lx %s\n\t%s:%d\n",
59 (unsigned long) pc,
60 function == NULL ? "???" : function,
61 filename == NULL ? "???" : filename,
62 lineno);
63 return 0;
66 /* Print errors to stderr. */
68 static void
69 error_callback (void *data, const char *msg, int errnum)
71 struct print_data *pdata = (struct print_data *) data;
73 if (pdata->state->filename != NULL)
74 fprintf (stderr, "%s: ", pdata->state->filename);
75 fprintf (stderr, "libbacktrace: %s", msg);
76 if (errnum > 0)
77 fprintf (stderr, ": %s", strerror (errnum));
78 fputc ('\n', stderr);
81 /* Print a backtrace. */
83 void
84 backtrace_print (struct backtrace_state *state, int skip, FILE *f)
86 struct print_data data;
88 data.state = state;
89 data.f = f;
90 backtrace_full (state, skip + 1, print_callback, error_callback,
91 (void *) &data);