]>
Commit | Line | Data |
---|---|---|
feaee4bd AC |
1 | /* The IGEN simulator generator for GDB, the GNU Debugger. |
2 | ||
3666a048 | 3 | Copyright 2002-2021 Free Software Foundation, Inc. |
feaee4bd AC |
4 | |
5 | Contributed by Andrew Cagney. | |
6 | ||
7 | This file is part of GDB. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
4744ac1b | 11 | the Free Software Foundation; either version 3 of the License, or |
feaee4bd AC |
12 | (at your option) any later version. |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
4744ac1b | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
feaee4bd | 21 | |
c906108c SS |
22 | |
23 | ||
24 | /* LF: Line Numbered Output Stream */ | |
25 | ||
26 | typedef struct _lf lf; | |
27 | ||
4e0bf4c4 AC |
28 | typedef enum |
29 | { | |
c906108c SS |
30 | lf_is_h, |
31 | lf_is_c, | |
32 | lf_is_text, | |
4e0bf4c4 AC |
33 | } |
34 | lf_file_type; | |
c906108c SS |
35 | |
36 | ||
4e0bf4c4 AC |
37 | typedef enum |
38 | { | |
c906108c SS |
39 | lf_include_references, |
40 | lf_omit_references, | |
4e0bf4c4 AC |
41 | } |
42 | lf_file_references; | |
c906108c SS |
43 | |
44 | ||
45 | /* Open the file NAME for writing ("-" for stdout). Use REAL_NAME | |
46 | when refering to the opened file. Line number information (in the | |
47 | output) can be suppressed with FILE_REFERENCES == | |
48 | LF_OMIT_REFERENCES. TYPE is to determine the formatting of some of | |
49 | the print messages below. */ | |
50 | ||
51 | extern lf *lf_open | |
4e0bf4c4 AC |
52 | (char *name, |
53 | char *real_name, | |
54 | lf_file_references file_references, | |
55 | lf_file_type type, const char *program); | |
c906108c | 56 | |
c4df5bbe SH |
57 | extern lf_file_type lf_get_file_type (const lf *file); |
58 | ||
4e0bf4c4 | 59 | extern void lf_close (lf *file); |
c906108c SS |
60 | |
61 | ||
62 | /* Basic output functions */ | |
63 | ||
4e0bf4c4 | 64 | extern int lf_write (lf *file, const char *string, int len); |
c906108c | 65 | |
4e0bf4c4 | 66 | extern int lf_putchr (lf *file, const char ch); |
c906108c | 67 | |
4e0bf4c4 | 68 | extern int lf_putstr (lf *file, const char *string); |
c906108c | 69 | |
4e0bf4c4 | 70 | extern int lf_putint (lf *file, int decimal); |
c906108c | 71 | |
4e0bf4c4 | 72 | extern int lf_putbin (lf *file, int decimal, int width); |
c906108c SS |
73 | |
74 | extern int lf_printf | |
4e0bf4c4 | 75 | (lf *file, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); |
c906108c SS |
76 | |
77 | ||
78 | /* Indentation control. | |
79 | ||
80 | lf_indent_suppress suppresses indentation on the next line (current | |
81 | line if that has not yet been started) */ | |
82 | ||
4e0bf4c4 | 83 | extern void lf_indent_suppress (lf *file); |
c906108c | 84 | |
4e0bf4c4 | 85 | extern void lf_indent (lf *file, int delta); |
c906108c SS |
86 | |
87 | ||
88 | /* Print generic text: */ | |
89 | ||
90 | ||
4e0bf4c4 | 91 | extern int lf_print__gnu_copyleft (lf *file); |
c906108c | 92 | |
4e0bf4c4 | 93 | extern int lf_print__file_start (lf *file); |
c906108c | 94 | |
4e0bf4c4 | 95 | extern int lf_print__this_file_is_empty (lf *file, const char *reason); |
c906108c | 96 | |
4e0bf4c4 | 97 | extern int lf_print__file_finish (lf *file); |
c906108c | 98 | |
4e0bf4c4 | 99 | extern int lf_print__internal_ref (lf *file); |
c906108c SS |
100 | |
101 | extern int lf_print__external_ref | |
4e0bf4c4 | 102 | (lf *file, int line_nr, const char *file_name); |
c906108c | 103 | |
4e0bf4c4 | 104 | extern int lf_print__line_ref (lf *file, line_ref *line); |
c906108c | 105 | |
4e0bf4c4 | 106 | extern int lf_print__ucase_filename (lf *file); |
c906108c SS |
107 | |
108 | extern int lf_print__function_type | |
4e0bf4c4 AC |
109 | (lf *file, |
110 | const char *type, const char *prefix, const char *trailing_space); | |
c906108c | 111 | |
4e0bf4c4 | 112 | typedef int print_function (lf *file); |
c906108c SS |
113 | |
114 | extern int lf_print__function_type_function | |
4e0bf4c4 AC |
115 | (lf *file, |
116 | print_function * print_type, | |
117 | const char *prefix, const char *trailing_space); |