]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* C language support definitions for GDB, the GNU debugger. |
9519ccd5 | 2 | |
32d0add0 | 3 | Copyright (C) 1992-2015 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b | 5 | This file is part of GDB. |
c906108c | 6 | |
c5aa993b JM |
7 | This program is free software; you can redistribute it and/or modify |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 10 | (at your option) any later version. |
c906108c | 11 | |
c5aa993b JM |
12 | This program is distributed in the hope that it will be useful, |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
c906108c | 16 | |
c5aa993b | 17 | You should have received a copy of the GNU General Public License |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
19 | |
20 | ||
21 | #if !defined (C_LANG_H) | |
22 | #define C_LANG_H 1 | |
23 | ||
da3331ec | 24 | struct ui_file; |
e9667a65 | 25 | struct language_arch_info; |
79d43c61 | 26 | struct type_print_options; |
410a0ff2 | 27 | struct parser_state; |
da3331ec | 28 | |
c906108c | 29 | #include "value.h" |
84f0252a | 30 | #include "macroexp.h" |
f4b8a18d | 31 | #include "parser-defs.h" |
c906108c SS |
32 | |
33 | ||
6c7a06a3 TT |
34 | /* The various kinds of C string and character. Note that these |
35 | values are chosen so that they may be or'd together in certain | |
36 | ways. */ | |
37 | enum c_string_type | |
38 | { | |
39 | /* An ordinary string: "value". */ | |
40 | C_STRING = 0, | |
41 | /* A wide string: L"value". */ | |
42 | C_WIDE_STRING = 1, | |
43 | /* A 16-bit Unicode string: u"value". */ | |
44 | C_STRING_16 = 2, | |
45 | /* A 32-bit Unicode string: U"value". */ | |
46 | C_STRING_32 = 3, | |
47 | /* An ordinary char: 'v'. This can also be or'd with one of the | |
48 | above to form the corresponding CHAR value from a STRING | |
49 | value. */ | |
50 | C_CHAR = 4, | |
51 | /* A wide char: L'v'. */ | |
52 | C_WIDE_CHAR = 5, | |
53 | /* A 16-bit Unicode char: u'v'. */ | |
54 | C_CHAR_16 = 6, | |
55 | /* A 32-bit Unicode char: U'v'. */ | |
56 | C_CHAR_32 = 7 | |
57 | }; | |
58 | ||
59 | /* Defined in c-exp.y. */ | |
60 | ||
410a0ff2 | 61 | extern int c_parse (struct parser_state *); |
6c7a06a3 TT |
62 | |
63 | extern void c_error (char *); | |
64 | ||
d7561cbb | 65 | extern int c_parse_escape (const char **, struct obstack *); |
c906108c | 66 | |
d9fcf2fb | 67 | /* Defined in c-typeprint.c */ |
aff410f1 | 68 | extern void c_print_type (struct type *, const char *, |
79d43c61 TT |
69 | struct ui_file *, int, int, |
70 | const struct type_print_options *); | |
c906108c | 71 | |
aff410f1 MS |
72 | extern void c_print_typedef (struct type *, |
73 | struct symbol *, | |
74 | struct ui_file *); | |
5c6ce71d | 75 | |
d3eab38a TT |
76 | extern void c_val_print (struct type *, const gdb_byte *, |
77 | int, CORE_ADDR, | |
78 | struct ui_file *, int, | |
79 | const struct value *, | |
80 | const struct value_print_options *); | |
c906108c | 81 | |
8e069a98 TT |
82 | extern void c_value_print (struct value *, struct ui_file *, |
83 | const struct value_print_options *); | |
c906108c SS |
84 | |
85 | /* These are in c-lang.c: */ | |
86 | ||
f4b8a18d | 87 | extern struct value *evaluate_subexp_c (struct type *expect_type, |
aff410f1 MS |
88 | struct expression *exp, |
89 | int *pos, | |
90 | enum noside noside); | |
f4b8a18d | 91 | |
6c7a06a3 | 92 | extern void c_printchar (int, struct type *, struct ui_file *); |
c906108c | 93 | |
aff410f1 MS |
94 | extern void c_printstr (struct ui_file * stream, |
95 | struct type *elttype, | |
96 | const gdb_byte *string, | |
97 | unsigned int length, | |
98 | const char *user_encoding, | |
99 | int force_ellipses, | |
79a45b7d | 100 | const struct value_print_options *options); |
c906108c | 101 | |
e9667a65 AC |
102 | extern void c_language_arch_info (struct gdbarch *gdbarch, |
103 | struct language_arch_info *lai); | |
c906108c | 104 | |
6aecb9c2 JB |
105 | extern const struct exp_descriptor exp_descriptor_c; |
106 | ||
107 | extern void c_emit_char (int c, struct type *type, | |
108 | struct ui_file *stream, int quoter); | |
109 | ||
f4b8a18d KW |
110 | extern const struct op_print c_op_print_tab[]; |
111 | ||
c906108c SS |
112 | /* These are in c-typeprint.c: */ |
113 | ||
aff410f1 | 114 | extern void c_type_print_base (struct type *, struct ui_file *, |
79d43c61 | 115 | int, int, const struct type_print_options *); |
c906108c | 116 | |
c906108c SS |
117 | /* These are in cp-valprint.c */ |
118 | ||
fc1a4b47 | 119 | extern void cp_print_class_member (const gdb_byte *, struct type *, |
9519ccd5 | 120 | struct ui_file *, char *); |
c906108c | 121 | |
a2bd3dcd | 122 | extern void cp_print_value_fields (struct type *, struct type *, |
fc1a4b47 | 123 | const gdb_byte *, int, CORE_ADDR, |
a2bd3dcd | 124 | struct ui_file *, int, |
0e03807e | 125 | const struct value *, |
79a45b7d | 126 | const struct value_print_options *, |
d9fcf2fb | 127 | struct type **, int); |
c906108c | 128 | |
edf3d5f3 TT |
129 | extern void cp_print_value_fields_rtti (struct type *, |
130 | const gdb_byte *, int, CORE_ADDR, | |
131 | struct ui_file *, int, | |
0e03807e | 132 | const struct value *, |
edf3d5f3 TT |
133 | const struct value_print_options *, |
134 | struct type **, int); | |
135 | ||
a14ed312 | 136 | extern int cp_is_vtbl_ptr_type (struct type *); |
c906108c | 137 | |
a14ed312 | 138 | extern int cp_is_vtbl_member (struct type *); |
c906108c | 139 | |
96c07c5b TT |
140 | /* These are in c-valprint.c. */ |
141 | ||
142 | extern int c_textual_element_type (struct type *, char); | |
143 | ||
bb2ec1b3 TT |
144 | /* Create a new instance of the C compiler and return it. The new |
145 | compiler is owned by the caller and must be freed using the destroy | |
146 | method. This function never returns NULL, but rather throws an | |
147 | exception on failure. This is suitable for use as the | |
148 | la_get_compile_instance language method. */ | |
149 | ||
150 | extern struct compile_instance *c_get_compile_context (void); | |
151 | ||
152 | /* This takes the user-supplied text and returns a newly malloc'd bit | |
153 | of code to compile. | |
154 | ||
155 | This is used as the la_compute_program language method; see that | |
156 | for a description of the arguments. */ | |
157 | ||
158 | extern char *c_compute_program (struct compile_instance *inst, | |
159 | const char *input, | |
160 | struct gdbarch *gdbarch, | |
161 | const struct block *expr_block, | |
162 | CORE_ADDR expr_pc); | |
c906108c | 163 | |
c5aa993b | 164 | #endif /* !defined (C_LANG_H) */ |